rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-03-27 20:56:45 +00:00
parent 8a7aff509d
commit 990a5e0cb4
4 changed files with 300 additions and 170 deletions

View File

@ -7231,7 +7231,7 @@
},
{
"name": "ExportImageToMemory",
"description": "Export image to memory buffer",
"description": "Export image to memory buffer, memory must be MemFree()",
"returnType": "unsigned char *",
"params": [
{
@ -9946,7 +9946,26 @@
},
{
"name": "TextReplace",
"description": "Replace text string (WARNING: memory must be freed!)",
"description": "Replace text string with new string",
"returnType": "char *",
"params": [
{
"type": "const char *",
"name": "text"
},
{
"type": "const char *",
"name": "search"
},
{
"type": "const char *",
"name": "replacement"
}
]
},
{
"name": "TextReplaceAlloc",
"description": "Replace text string with new string, memory must be MemFree()",
"returnType": "char *",
"params": [
{
@ -9965,7 +9984,30 @@
},
{
"name": "TextReplaceBetween",
"description": "Replace text between two specific strings (WARNING: memory must be freed!)",
"description": "Replace text between two specific strings",
"returnType": "char *",
"params": [
{
"type": "const char *",
"name": "text"
},
{
"type": "const char *",
"name": "begin"
},
{
"type": "const char *",
"name": "end"
},
{
"type": "const char *",
"name": "replacement"
}
]
},
{
"name": "TextReplaceBetweenAlloc",
"description": "Replace text between two specific strings, memory must be MemFree()",
"returnType": "char *",
"params": [
{
@ -9988,7 +10030,26 @@
},
{
"name": "TextInsert",
"description": "Insert text in a position (WARNING: memory must be freed!)",
"description": "Insert text in a defined byte position",
"returnType": "char *",
"params": [
{
"type": "const char *",
"name": "text"
},
{
"type": "const char *",
"name": "insert"
},
{
"type": "int",
"name": "position"
}
]
},
{
"name": "TextInsertAlloc",
"description": "Insert text in a defined byte position, memory must be MemFree()",
"returnType": "char *",
"params": [
{