rlparser: update raylib_api.* by CI
This commit is contained in:
parent
d875fad4af
commit
cca4bdbf8f
|
|
@ -4729,6 +4729,36 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "GetDirectoryFileCount",
|
||||||
|
"description": "Get the file count in a directory",
|
||||||
|
"returnType": "unsigned int",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "const char *",
|
||||||
|
"name": "dirPath"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "GetDirectoryFileCountEx",
|
||||||
|
"description": "Get the file count in a directory with extension filtering and recursive directory scan. Use 'DIR' in the filter string to include directories in the result",
|
||||||
|
"returnType": "unsigned int",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "const char *",
|
||||||
|
"name": "basePath"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "const char *",
|
||||||
|
"name": "filter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "bool",
|
||||||
|
"name": "scanSubdirs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "CompressData",
|
"name": "CompressData",
|
||||||
"description": "Compress data (DEFLATE algorithm), memory must be MemFree()",
|
"description": "Compress data (DEFLATE algorithm), memory must be MemFree()",
|
||||||
|
|
|
||||||
|
|
@ -4225,6 +4225,24 @@ return {
|
||||||
{type = "FilePathList", name = "files"}
|
{type = "FilePathList", name = "files"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "GetDirectoryFileCount",
|
||||||
|
description = "Get the file count in a directory",
|
||||||
|
returnType = "unsigned int",
|
||||||
|
params = {
|
||||||
|
{type = "const char *", name = "dirPath"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "GetDirectoryFileCountEx",
|
||||||
|
description = "Get the file count in a directory with extension filtering and recursive directory scan. Use 'DIR' in the filter string to include directories in the result",
|
||||||
|
returnType = "unsigned int",
|
||||||
|
params = {
|
||||||
|
{type = "const char *", name = "basePath"},
|
||||||
|
{type = "const char *", name = "filter"},
|
||||||
|
{type = "bool", name = "scanSubdirs"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "CompressData",
|
name = "CompressData",
|
||||||
description = "Compress data (DEFLATE algorithm), memory must be MemFree()",
|
description = "Compress data (DEFLATE algorithm), memory must be MemFree()",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -678,7 +678,7 @@
|
||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="597">
|
<Functions count="599">
|
||||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||||
<Param type="int" name="width" desc="" />
|
<Param type="int" name="width" desc="" />
|
||||||
<Param type="int" name="height" desc="" />
|
<Param type="int" name="height" desc="" />
|
||||||
|
|
@ -1136,6 +1136,14 @@
|
||||||
<Function name="UnloadDroppedFiles" retType="void" paramCount="1" desc="Unload dropped filepaths">
|
<Function name="UnloadDroppedFiles" retType="void" paramCount="1" desc="Unload dropped filepaths">
|
||||||
<Param type="FilePathList" name="files" desc="" />
|
<Param type="FilePathList" name="files" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
<Function name="GetDirectoryFileCount" retType="unsigned int" paramCount="1" desc="Get the file count in a directory">
|
||||||
|
<Param type="const char *" name="dirPath" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="GetDirectoryFileCountEx" retType="unsigned int" paramCount="3" desc="Get the file count in a directory with extension filtering and recursive directory scan. Use 'DIR' in the filter string to include directories in the result">
|
||||||
|
<Param type="const char *" name="basePath" desc="" />
|
||||||
|
<Param type="const char *" name="filter" desc="" />
|
||||||
|
<Param type="bool" name="scanSubdirs" desc="" />
|
||||||
|
</Function>
|
||||||
<Function name="CompressData" retType="unsigned char *" paramCount="3" desc="Compress data (DEFLATE algorithm), memory must be MemFree()">
|
<Function name="CompressData" retType="unsigned char *" paramCount="3" desc="Compress data (DEFLATE algorithm), memory must be MemFree()">
|
||||||
<Param type="const unsigned char *" name="data" desc="" />
|
<Param type="const unsigned char *" name="data" desc="" />
|
||||||
<Param type="int" name="dataSize" desc="" />
|
<Param type="int" name="dataSize" desc="" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user