Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-05-29 15:02:00 +00:00
parent c335c3c52c
commit a942a3bc70
4 changed files with 456 additions and 429 deletions

View File

@ -4499,6 +4499,17 @@
}
]
},
{
"name": "IsFileNameValid",
"description": "Check if fileName is valid for the platform/OS",
"returnType": "bool",
"params": [
{
"type": "const char *",
"name": "fileName"
}
]
},
{
"name": "LoadDirectoryFiles",
"description": "Load directory filepaths",

View File

@ -4058,6 +4058,14 @@ return {
{type = "const char *", name = "path"}
}
},
{
name = "IsFileNameValid",
description = "Check if fileName is valid for the platform/OS",
returnType = "bool",
params = {
{type = "const char *", name = "fileName"}
}
},
{
name = "LoadDirectoryFiles",
description = "Load directory filepaths",

File diff suppressed because it is too large Load Diff

View File

@ -670,7 +670,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="562">
<Functions count="563">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@ -1075,6 +1075,9 @@
<Function name="IsPathFile" retType="bool" paramCount="1" desc="Check if a given path is a file or a directory">
<Param type="const char *" name="path" desc="" />
</Function>
<Function name="IsFileNameValid" retType="bool" paramCount="1" desc="Check if fileName is valid for the platform/OS">
<Param type="const char *" name="fileName" desc="" />
</Function>
<Function name="LoadDirectoryFiles" retType="FilePathList" paramCount="1" desc="Load directory filepaths">
<Param type="const char *" name="dirPath" desc="" />
</Function>