Update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2024-09-22 20:11:24 +00:00
parent 55a25ac04b
commit 1c7b18923c
4 changed files with 473 additions and 446 deletions

View file

@ -4502,6 +4502,17 @@
"description": "Get the directory of the running application (uses static string)",
"returnType": "const char *"
},
{
"name": "MakeDirectory",
"description": "Create directories (including full path requested), returns 0 on success",
"returnType": "int",
"params": [
{
"type": "const char *",
"name": "dirPath"
}
]
},
{
"name": "ChangeDirectory",
"description": "Change working directory, return true on success",

View file

@ -4067,6 +4067,14 @@ return {
description = "Get the directory of the running application (uses static string)",
returnType = "const char *"
},
{
name = "MakeDirectory",
description = "Create directories (including full path requested), returns 0 on success",
returnType = "int",
params = {
{type = "const char *", name = "dirPath"}
}
},
{
name = "ChangeDirectory",
description = "Change working directory, return true on success",

File diff suppressed because it is too large Load diff

View file

@ -675,7 +675,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="577">
<Functions count="578">
<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="" />
@ -1074,6 +1074,9 @@
</Function>
<Function name="GetApplicationDirectory" retType="const char *" paramCount="0" desc="Get the directory of the running application (uses static string)">
</Function>
<Function name="MakeDirectory" retType="int" paramCount="1" desc="Create directories (including full path requested), returns 0 on success">
<Param type="const char *" name="dirPath" desc="" />
</Function>
<Function name="ChangeDirectory" retType="bool" paramCount="1" desc="Change working directory, return true on success">
<Param type="const char *" name="dir" desc="" />
</Function>