diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index c9b314207..72a3477a4 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -4703,12 +4703,12 @@ }, { "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 *", "params": [ { "type": "const char *", - "name": "data" + "name": "text" }, { "type": "int *", diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua index 18ef44303..662d45a78 100644 --- a/parser/output/raylib_api.lua +++ b/parser/output/raylib_api.lua @@ -4208,10 +4208,10 @@ return { }, { 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 *", params = { - {type = "const char *", name = "data"}, + {type = "const char *", name = "text"}, {type = "int *", name = "outputSize"} } }, diff --git a/parser/output/raylib_api.txt b/parser/output/raylib_api.txt index dd7b21c86..c399c5291 100644 --- a/parser/output/raylib_api.txt +++ b/parser/output/raylib_api.txt @@ -1794,8 +1794,8 @@ Function 148: EncodeDataBase64() (3 input parameters) 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 char *) + Description: Decode Base64 string (expected NULL terminated), memory must be MemFree() + Param[1]: text (type: const char *) Param[2]: outputSize (type: int *) Function 150: ComputeCRC32() (2 input parameters) Name: ComputeCRC32 diff --git a/parser/output/raylib_api.xml b/parser/output/raylib_api.xml index 18ef07eb2..511d5d121 100644 --- a/parser/output/raylib_api.xml +++ b/parser/output/raylib_api.xml @@ -1128,8 +1128,8 @@ - - + +