Skip to content

Commit 63b988a

Browse files
Update raylib_api.* by CI
1 parent f7d03ef commit 63b988a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

parser/output/raylib_api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4409,7 +4409,7 @@
44094409
"name": "fileName"
44104410
},
44114411
{
4412-
"type": "char *",
4412+
"type": "const char *",
44134413
"name": "text"
44144414
}
44154415
]
@@ -4707,7 +4707,7 @@
47074707
"returnType": "unsigned char *",
47084708
"params": [
47094709
{
4710-
"type": "const unsigned char *",
4710+
"type": "const char *",
47114711
"name": "data"
47124712
},
47134713
{

parser/output/raylib_api.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4006,7 +4006,7 @@ return {
40064006
returnType = "bool",
40074007
params = {
40084008
{type = "const char *", name = "fileName"},
4009-
{type = "char *", name = "text"}
4009+
{type = "const char *", name = "text"}
40104010
}
40114011
},
40124012
{
@@ -4211,7 +4211,7 @@ return {
42114211
description = "Decode Base64 string data, memory must be MemFree()",
42124212
returnType = "unsigned char *",
42134213
params = {
4214-
{type = "const unsigned char *", name = "data"},
4214+
{type = "const char *", name = "data"},
42154215
{type = "int *", name = "outputSize"}
42164216
}
42174217
},

parser/output/raylib_api.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ Function 123: SaveFileText() (2 input parameters)
16561656
Return type: bool
16571657
Description: Save text data to file (write), string must be '\0' terminated, returns true on success
16581658
Param[1]: fileName (type: const char *)
1659-
Param[2]: text (type: char *)
1659+
Param[2]: text (type: const char *)
16601660
Function 124: FileExists() (1 input parameters)
16611661
Name: FileExists
16621662
Return type: bool
@@ -1795,7 +1795,7 @@ Function 149: DecodeDataBase64() (2 input parameters)
17951795
Name: DecodeDataBase64
17961796
Return type: unsigned char *
17971797
Description: Decode Base64 string data, memory must be MemFree()
1798-
Param[1]: data (type: const unsigned char *)
1798+
Param[1]: data (type: const char *)
17991799
Param[2]: outputSize (type: int *)
18001800
Function 150: ComputeCRC32() (2 input parameters)
18011801
Name: ComputeCRC32

parser/output/raylib_api.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@
10461046
</Function>
10471047
<Function name="SaveFileText" retType="bool" paramCount="2" desc="Save text data to file (write), string must be '\0' terminated, returns true on success">
10481048
<Param type="const char *" name="fileName" desc="" />
1049-
<Param type="char *" name="text" desc="" />
1049+
<Param type="const char *" name="text" desc="" />
10501050
</Function>
10511051
<Function name="FileExists" retType="bool" paramCount="1" desc="Check if file exists">
10521052
<Param type="const char *" name="fileName" desc="" />
@@ -1129,7 +1129,7 @@
11291129
<Param type="int *" name="outputSize" desc="" />
11301130
</Function>
11311131
<Function name="DecodeDataBase64" retType="unsigned char *" paramCount="2" desc="Decode Base64 string data, memory must be MemFree()">
1132-
<Param type="const unsigned char *" name="data" desc="" />
1132+
<Param type="const char *" name="data" desc="" />
11331133
<Param type="int *" name="outputSize" desc="" />
11341134
</Function>
11351135
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">

0 commit comments

Comments
 (0)