Update raylib_api.* by CI
This commit is contained in:
parent
d7148f5f9d
commit
2d952d8e94
4 changed files with 8 additions and 8 deletions
|
@ -4703,12 +4703,12 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "DecodeDataBase64",
|
"name": "DecodeDataBase64",
|
||||||
"description": "Decode Base64 string data, memory must be MemFree()",
|
"description": "Decode Base64 string (expected NULL terminated), memory must be MemFree()",
|
||||||
"returnType": "unsigned char *",
|
"returnType": "unsigned char *",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
"type": "const char *",
|
"type": "const char *",
|
||||||
"name": "data"
|
"name": "text"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "int *",
|
"type": "int *",
|
||||||
|
|
|
@ -4208,10 +4208,10 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "DecodeDataBase64",
|
name = "DecodeDataBase64",
|
||||||
description = "Decode Base64 string data, memory must be MemFree()",
|
description = "Decode Base64 string (expected NULL terminated), memory must be MemFree()",
|
||||||
returnType = "unsigned char *",
|
returnType = "unsigned char *",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "data"},
|
{type = "const char *", name = "text"},
|
||||||
{type = "int *", name = "outputSize"}
|
{type = "int *", name = "outputSize"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1794,8 +1794,8 @@ Function 148: EncodeDataBase64() (3 input parameters)
|
||||||
Function 149: DecodeDataBase64() (2 input parameters)
|
Function 149: DecodeDataBase64() (2 input parameters)
|
||||||
Name: DecodeDataBase64
|
Name: DecodeDataBase64
|
||||||
Return type: unsigned char *
|
Return type: unsigned char *
|
||||||
Description: Decode Base64 string data, memory must be MemFree()
|
Description: Decode Base64 string (expected NULL terminated), memory must be MemFree()
|
||||||
Param[1]: data (type: const char *)
|
Param[1]: text (type: const char *)
|
||||||
Param[2]: outputSize (type: int *)
|
Param[2]: outputSize (type: int *)
|
||||||
Function 150: ComputeCRC32() (2 input parameters)
|
Function 150: ComputeCRC32() (2 input parameters)
|
||||||
Name: ComputeCRC32
|
Name: ComputeCRC32
|
||||||
|
|
|
@ -1128,8 +1128,8 @@
|
||||||
<Param type="int" name="dataSize" desc="" />
|
<Param type="int" name="dataSize" desc="" />
|
||||||
<Param type="int *" name="outputSize" desc="" />
|
<Param type="int *" name="outputSize" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="DecodeDataBase64" retType="unsigned char *" paramCount="2" desc="Decode Base64 string data, memory must be MemFree()">
|
<Function name="DecodeDataBase64" retType="unsigned char *" paramCount="2" desc="Decode Base64 string (expected NULL terminated), memory must be MemFree()">
|
||||||
<Param type="const char *" name="data" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="int *" name="outputSize" desc="" />
|
<Param type="int *" name="outputSize" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">
|
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue