mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-12 10:09:09 -04:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -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": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user