rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-09-04 16:24:23 +00:00
parent 1829f9282c
commit e9d75a4fe9
5 changed files with 521 additions and 488 deletions

View File

@@ -4546,6 +4546,17 @@
}
]
},
{
"name": "IsFileHidden",
"description": "Check if file path (file or directory) is hidden by OS",
"returnType": "bool",
"params": [
{
"type": "const char *",
"name": "filePath"
}
]
},
{
"name": "GetFileLength",
"description": "Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)",

View File

@@ -4093,6 +4093,14 @@ return {
{type = "const char *", name = "ext"}
}
},
{
name = "IsFileHidden",
description = "Check if file path (file or directory) is hidden by OS",
returnType = "bool",
params = {
{type = "const char *", name = "filePath"}
}
},
{
name = "GetFileLength",
description = "Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)",

View File

@@ -2970,6 +2970,12 @@
((type "const char *") (name "fileName"))
((type "const char *") (name "ext"))))
((name "IsFileHidden")
(description "Check if file path (file or directory) is hidden by OS")
(return-type "bool")
(params
((type "const char *") (name "filePath"))))
((name "GetFileLength")
(description "Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)")
(return-type "int")

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="618">
<Functions count="619">
<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="" />
@@ -1084,6 +1084,9 @@
<Param type="const char *" name="fileName" desc="" />
<Param type="const char *" name="ext" desc="" />
</Function>
<Function name="IsFileHidden" retType="bool" paramCount="1" desc="Check if file path (file or directory) is hidden by OS">
<Param type="const char *" name="filePath" desc="" />
</Function>
<Function name="GetFileLength" retType="int" paramCount="1" desc="Get file length in bytes (NOTE: GetFileSize() conflicts with windows.h)">
<Param type="const char *" name="fileName" desc="" />
</Function>