rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2026-06-03 19:07:28 +00:00
parent a85c9f4898
commit 9ace148917
4 changed files with 31 additions and 31 deletions

View File

@ -4427,7 +4427,7 @@
}, },
{ {
"name": "FileRename", "name": "FileRename",
"description": "Rename file (if exists)", "description": "Rename file (if exists), returns 0 on success",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4442,7 +4442,7 @@
}, },
{ {
"name": "FileRemove", "name": "FileRemove",
"description": "Remove file (if exists)", "description": "Remove file (if exists), returns 0 on success",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4453,7 +4453,7 @@
}, },
{ {
"name": "FileCopy", "name": "FileCopy",
"description": "Copy file from one path to another, dstPath created if it doesn't exist", "description": "Copy file from one path to another, dstPath created if it doesn't exist, returns 0 on success",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4468,7 +4468,7 @@
}, },
{ {
"name": "FileMove", "name": "FileMove",
"description": "Move file from one directory to another, dstPath created if it doesn't exist", "description": "Move file from one directory to another, dstPath created if it doesn't exist, returns 0 on success",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4483,7 +4483,7 @@
}, },
{ {
"name": "FileTextReplace", "name": "FileTextReplace",
"description": "Replace text in an existing file", "description": "Replace text in an existing file, returns 0 on success",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4502,7 +4502,7 @@
}, },
{ {
"name": "FileTextFindIndex", "name": "FileTextFindIndex",
"description": "Find text in existing file", "description": "Find text in existing file, returns -1 if index not found or index otherwise",
"returnType": "int", "returnType": "int",
"params": [ "params": [
{ {
@ -4652,8 +4652,8 @@
}, },
{ {
"name": "ChangeDirectory", "name": "ChangeDirectory",
"description": "Change working directory, return true on success", "description": "Change working directory, returns 0 on success",
"returnType": "bool", "returnType": "int",
"params": [ "params": [
{ {
"type": "const char *", "type": "const char *",

View File

@ -4022,7 +4022,7 @@ return {
}, },
{ {
name = "FileRename", name = "FileRename",
description = "Rename file (if exists)", description = "Rename file (if exists), returns 0 on success",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "fileName"}, {type = "const char *", name = "fileName"},
@ -4031,7 +4031,7 @@ return {
}, },
{ {
name = "FileRemove", name = "FileRemove",
description = "Remove file (if exists)", description = "Remove file (if exists), returns 0 on success",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "fileName"} {type = "const char *", name = "fileName"}
@ -4039,7 +4039,7 @@ return {
}, },
{ {
name = "FileCopy", name = "FileCopy",
description = "Copy file from one path to another, dstPath created if it doesn't exist", description = "Copy file from one path to another, dstPath created if it doesn't exist, returns 0 on success",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "srcPath"}, {type = "const char *", name = "srcPath"},
@ -4048,7 +4048,7 @@ return {
}, },
{ {
name = "FileMove", name = "FileMove",
description = "Move file from one directory to another, dstPath created if it doesn't exist", description = "Move file from one directory to another, dstPath created if it doesn't exist, returns 0 on success",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "srcPath"}, {type = "const char *", name = "srcPath"},
@ -4057,7 +4057,7 @@ return {
}, },
{ {
name = "FileTextReplace", name = "FileTextReplace",
description = "Replace text in an existing file", description = "Replace text in an existing file, returns 0 on success",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "fileName"}, {type = "const char *", name = "fileName"},
@ -4067,7 +4067,7 @@ return {
}, },
{ {
name = "FileTextFindIndex", name = "FileTextFindIndex",
description = "Find text in existing file", description = "Find text in existing file, returns -1 if index not found or index otherwise",
returnType = "int", returnType = "int",
params = { params = {
{type = "const char *", name = "fileName"}, {type = "const char *", name = "fileName"},
@ -4175,8 +4175,8 @@ return {
}, },
{ {
name = "ChangeDirectory", name = "ChangeDirectory",
description = "Change working directory, return true on success", description = "Change working directory, returns 0 on success",
returnType = "bool", returnType = "int",
params = { params = {
{type = "const char *", name = "dirPath"} {type = "const char *", name = "dirPath"}
} }

View File

@ -1667,37 +1667,37 @@ Function 123: SetSaveFileTextCallback() (1 input parameters)
Function 124: FileRename() (2 input parameters) Function 124: FileRename() (2 input parameters)
Name: FileRename Name: FileRename
Return type: int Return type: int
Description: Rename file (if exists) Description: Rename file (if exists), returns 0 on success
Param[1]: fileName (type: const char *) Param[1]: fileName (type: const char *)
Param[2]: fileRename (type: const char *) Param[2]: fileRename (type: const char *)
Function 125: FileRemove() (1 input parameters) Function 125: FileRemove() (1 input parameters)
Name: FileRemove Name: FileRemove
Return type: int Return type: int
Description: Remove file (if exists) Description: Remove file (if exists), returns 0 on success
Param[1]: fileName (type: const char *) Param[1]: fileName (type: const char *)
Function 126: FileCopy() (2 input parameters) Function 126: FileCopy() (2 input parameters)
Name: FileCopy Name: FileCopy
Return type: int Return type: int
Description: Copy file from one path to another, dstPath created if it doesn't exist Description: Copy file from one path to another, dstPath created if it doesn't exist, returns 0 on success
Param[1]: srcPath (type: const char *) Param[1]: srcPath (type: const char *)
Param[2]: dstPath (type: const char *) Param[2]: dstPath (type: const char *)
Function 127: FileMove() (2 input parameters) Function 127: FileMove() (2 input parameters)
Name: FileMove Name: FileMove
Return type: int Return type: int
Description: Move file from one directory to another, dstPath created if it doesn't exist Description: Move file from one directory to another, dstPath created if it doesn't exist, returns 0 on success
Param[1]: srcPath (type: const char *) Param[1]: srcPath (type: const char *)
Param[2]: dstPath (type: const char *) Param[2]: dstPath (type: const char *)
Function 128: FileTextReplace() (3 input parameters) Function 128: FileTextReplace() (3 input parameters)
Name: FileTextReplace Name: FileTextReplace
Return type: int Return type: int
Description: Replace text in an existing file Description: Replace text in an existing file, returns 0 on success
Param[1]: fileName (type: const char *) Param[1]: fileName (type: const char *)
Param[2]: search (type: const char *) Param[2]: search (type: const char *)
Param[3]: replacement (type: const char *) Param[3]: replacement (type: const char *)
Function 129: FileTextFindIndex() (2 input parameters) Function 129: FileTextFindIndex() (2 input parameters)
Name: FileTextFindIndex Name: FileTextFindIndex
Return type: int Return type: int
Description: Find text in existing file Description: Find text in existing file, returns -1 if index not found or index otherwise
Param[1]: fileName (type: const char *) Param[1]: fileName (type: const char *)
Param[2]: search (type: const char *) Param[2]: search (type: const char *)
Function 130: FileExists() (1 input parameters) Function 130: FileExists() (1 input parameters)
@ -1768,8 +1768,8 @@ Function 142: MakeDirectory() (1 input parameters)
Param[1]: dirPath (type: const char *) Param[1]: dirPath (type: const char *)
Function 143: ChangeDirectory() (1 input parameters) Function 143: ChangeDirectory() (1 input parameters)
Name: ChangeDirectory Name: ChangeDirectory
Return type: bool Return type: int
Description: Change working directory, return true on success Description: Change working directory, returns 0 on success
Param[1]: dirPath (type: const char *) Param[1]: dirPath (type: const char *)
Function 144: IsPathFile() (1 input parameters) Function 144: IsPathFile() (1 input parameters)
Name: IsPathFile Name: IsPathFile

View File

@ -1051,27 +1051,27 @@
<Function name="SetSaveFileTextCallback" retType="void" paramCount="1" desc="Set custom file text data saver"> <Function name="SetSaveFileTextCallback" retType="void" paramCount="1" desc="Set custom file text data saver">
<Param type="SaveFileTextCallback" name="callback" desc="" /> <Param type="SaveFileTextCallback" name="callback" desc="" />
</Function> </Function>
<Function name="FileRename" retType="int" paramCount="2" desc="Rename file (if exists)"> <Function name="FileRename" retType="int" paramCount="2" desc="Rename file (if exists), returns 0 on success">
<Param type="const char *" name="fileName" desc="" /> <Param type="const char *" name="fileName" desc="" />
<Param type="const char *" name="fileRename" desc="" /> <Param type="const char *" name="fileRename" desc="" />
</Function> </Function>
<Function name="FileRemove" retType="int" paramCount="1" desc="Remove file (if exists)"> <Function name="FileRemove" retType="int" paramCount="1" desc="Remove file (if exists), returns 0 on success">
<Param type="const char *" name="fileName" desc="" /> <Param type="const char *" name="fileName" desc="" />
</Function> </Function>
<Function name="FileCopy" retType="int" paramCount="2" desc="Copy file from one path to another, dstPath created if it doesn't exist"> <Function name="FileCopy" retType="int" paramCount="2" desc="Copy file from one path to another, dstPath created if it doesn't exist, returns 0 on success">
<Param type="const char *" name="srcPath" desc="" /> <Param type="const char *" name="srcPath" desc="" />
<Param type="const char *" name="dstPath" desc="" /> <Param type="const char *" name="dstPath" desc="" />
</Function> </Function>
<Function name="FileMove" retType="int" paramCount="2" desc="Move file from one directory to another, dstPath created if it doesn't exist"> <Function name="FileMove" retType="int" paramCount="2" desc="Move file from one directory to another, dstPath created if it doesn't exist, returns 0 on success">
<Param type="const char *" name="srcPath" desc="" /> <Param type="const char *" name="srcPath" desc="" />
<Param type="const char *" name="dstPath" desc="" /> <Param type="const char *" name="dstPath" desc="" />
</Function> </Function>
<Function name="FileTextReplace" retType="int" paramCount="3" desc="Replace text in an existing file"> <Function name="FileTextReplace" retType="int" paramCount="3" desc="Replace text in an existing file, returns 0 on success">
<Param type="const char *" name="fileName" desc="" /> <Param type="const char *" name="fileName" desc="" />
<Param type="const char *" name="search" desc="" /> <Param type="const char *" name="search" desc="" />
<Param type="const char *" name="replacement" desc="" /> <Param type="const char *" name="replacement" desc="" />
</Function> </Function>
<Function name="FileTextFindIndex" retType="int" paramCount="2" desc="Find text in existing file"> <Function name="FileTextFindIndex" retType="int" paramCount="2" desc="Find text in existing file, returns -1 if index not found or index otherwise">
<Param type="const char *" name="fileName" desc="" /> <Param type="const char *" name="fileName" desc="" />
<Param type="const char *" name="search" desc="" /> <Param type="const char *" name="search" desc="" />
</Function> </Function>
@ -1113,7 +1113,7 @@
<Function name="MakeDirectory" retType="int" paramCount="1" desc="Create directories (including full path requested), returns 0 on success"> <Function name="MakeDirectory" retType="int" paramCount="1" desc="Create directories (including full path requested), returns 0 on success">
<Param type="const char *" name="dirPath" desc="" /> <Param type="const char *" name="dirPath" desc="" />
</Function> </Function>
<Function name="ChangeDirectory" retType="bool" paramCount="1" desc="Change working directory, return true on success"> <Function name="ChangeDirectory" retType="int" paramCount="1" desc="Change working directory, returns 0 on success">
<Param type="const char *" name="dirPath" desc="" /> <Param type="const char *" name="dirPath" desc="" />
</Function> </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 is a file or a directory">