Update raylib_api.* by CI
This commit is contained in:
parent
f7d03efb49
commit
63b988ade9
4 changed files with 8 additions and 8 deletions
|
@ -4409,7 +4409,7 @@
|
|||
"name": "fileName"
|
||||
},
|
||||
{
|
||||
"type": "char *",
|
||||
"type": "const char *",
|
||||
"name": "text"
|
||||
}
|
||||
]
|
||||
|
@ -4707,7 +4707,7 @@
|
|||
"returnType": "unsigned char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const unsigned char *",
|
||||
"type": "const char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
|
|
|
@ -4006,7 +4006,7 @@ return {
|
|||
returnType = "bool",
|
||||
params = {
|
||||
{type = "const char *", name = "fileName"},
|
||||
{type = "char *", name = "text"}
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -4211,7 +4211,7 @@ return {
|
|||
description = "Decode Base64 string data, memory must be MemFree()",
|
||||
returnType = "unsigned char *",
|
||||
params = {
|
||||
{type = "const unsigned char *", name = "data"},
|
||||
{type = "const char *", name = "data"},
|
||||
{type = "int *", name = "outputSize"}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1656,7 +1656,7 @@ Function 123: SaveFileText() (2 input parameters)
|
|||
Return type: bool
|
||||
Description: Save text data to file (write), string must be '\0' terminated, returns true on success
|
||||
Param[1]: fileName (type: const char *)
|
||||
Param[2]: text (type: char *)
|
||||
Param[2]: text (type: const char *)
|
||||
Function 124: FileExists() (1 input parameters)
|
||||
Name: FileExists
|
||||
Return type: bool
|
||||
|
@ -1795,7 +1795,7 @@ Function 149: DecodeDataBase64() (2 input parameters)
|
|||
Name: DecodeDataBase64
|
||||
Return type: unsigned char *
|
||||
Description: Decode Base64 string data, memory must be MemFree()
|
||||
Param[1]: data (type: const unsigned char *)
|
||||
Param[1]: data (type: const char *)
|
||||
Param[2]: outputSize (type: int *)
|
||||
Function 150: ComputeCRC32() (2 input parameters)
|
||||
Name: ComputeCRC32
|
||||
|
|
|
@ -1046,7 +1046,7 @@
|
|||
</Function>
|
||||
<Function name="SaveFileText" retType="bool" paramCount="2" desc="Save text data to file (write), string must be '\0' terminated, returns true on success">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
<Param type="char *" name="text" desc="" />
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="FileExists" retType="bool" paramCount="1" desc="Check if file exists">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
|
@ -1129,7 +1129,7 @@
|
|||
<Param type="int *" name="outputSize" desc="" />
|
||||
</Function>
|
||||
<Function name="DecodeDataBase64" retType="unsigned char *" paramCount="2" desc="Decode Base64 string data, memory must be MemFree()">
|
||||
<Param type="const unsigned char *" name="data" desc="" />
|
||||
<Param type="const char *" name="data" desc="" />
|
||||
<Param type="int *" name="outputSize" desc="" />
|
||||
</Function>
|
||||
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue