mirror of
https://github.com/raysan5/raylib.git
synced 2026-09-14 01:50:50 +00:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@@ -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)",
|
||||
|
||||
@@ -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)",
|
||||
|
||||
@@ -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
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user