mirror of
https://github.com/raysan5/raylib.git
synced 2026-07-05 00:45:15 +00:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@@ -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": [
|
||||
{
|
||||
|
||||
@@ -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"}
|
||||
|
||||
@@ -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
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user