rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-07-02 08:49:50 +00:00
parent 0c0375f8ae
commit 9f60957b84
5 changed files with 507 additions and 474 deletions

View File

@@ -4657,7 +4657,18 @@
},
{
"name": "IsPathFile",
"description": "Check if given path is a file or a directory",
"description": "Check if given path points to a file",
"returnType": "bool",
"params": [
{
"type": "const char *",
"name": "path"
}
]
},
{
"name": "IsPathDirectory",
"description": "Check if given path points to a directory",
"returnType": "bool",
"params": [
{

View File

@@ -4177,7 +4177,15 @@ return {
},
{
name = "IsPathFile",
description = "Check if given path is a file or a directory",
description = "Check if given path points to a file",
returnType = "bool",
params = {
{type = "const char *", name = "path"}
}
},
{
name = "IsPathDirectory",
description = "Check if given path points to a directory",
returnType = "bool",
params = {
{type = "const char *", name = "path"}

View File

@@ -3033,7 +3033,13 @@
((type "const char *") (name "dirPath"))))
((name "IsPathFile")
(description "Check if given path is a file or a directory")
(description "Check if given path points to a file")
(return-type "bool")
(params
((type "const char *") (name "path"))))
((name "IsPathDirectory")
(description "Check if given path points to a directory")
(return-type "bool")
(params
((type "const char *") (name "path"))))

File diff suppressed because it is too large Load Diff

View File

@@ -681,7 +681,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="611">
<Functions count="612">
<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="" />
@@ -1115,7 +1115,10 @@
<Function name="ChangeDirectory" retType="int" paramCount="1" desc="Change working directory, returns 0 on success">
<Param type="const char *" name="dirPath" desc="" />
</Function>
<Function name="IsPathFile" retType="bool" paramCount="1" desc="Check if given path is a file or a directory">
<Function name="IsPathFile" retType="bool" paramCount="1" desc="Check if given path points to a file">
<Param type="const char *" name="path" desc="" />
</Function>
<Function name="IsPathDirectory" retType="bool" paramCount="1" desc="Check if given path points to 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">