mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-09 16:59:09 -04:00
rlparser: update raylib_api.* by CI
This commit is contained in:
@ -7231,7 +7231,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ExportImageToMemory",
|
"name": "ExportImageToMemory",
|
||||||
"description": "Export image to memory buffer",
|
"description": "Export image to memory buffer, memory must be MemFree()",
|
||||||
"returnType": "unsigned char *",
|
"returnType": "unsigned char *",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
@ -9946,7 +9946,26 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextReplace",
|
"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 *",
|
"returnType": "char *",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
@ -9965,7 +9984,30 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextReplaceBetween",
|
"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 *",
|
"returnType": "char *",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
@ -9988,7 +10030,26 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextInsert",
|
"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 *",
|
"returnType": "char *",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
|||||||
@ -5596,7 +5596,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "ExportImageToMemory",
|
name = "ExportImageToMemory",
|
||||||
description = "Export image to memory buffer",
|
description = "Export image to memory buffer, memory must be MemFree()",
|
||||||
returnType = "unsigned char *",
|
returnType = "unsigned char *",
|
||||||
params = {
|
params = {
|
||||||
{type = "Image", name = "image"},
|
{type = "Image", name = "image"},
|
||||||
@ -7045,7 +7045,17 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextReplace",
|
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 *",
|
returnType = "char *",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"},
|
{type = "const char *", name = "text"},
|
||||||
@ -7055,7 +7065,18 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextReplaceBetween",
|
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 *",
|
returnType = "char *",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"},
|
{type = "const char *", name = "text"},
|
||||||
@ -7066,7 +7087,17 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextInsert",
|
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 *",
|
returnType = "char *",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"},
|
{type = "const char *", name = "text"},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -682,7 +682,7 @@
|
|||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="597">
|
<Functions count="600">
|
||||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||||
<Param type="int" name="width" desc="" />
|
<Param type="int" name="width" desc="" />
|
||||||
<Param type="int" name="height" desc="" />
|
<Param type="int" name="height" desc="" />
|
||||||
@ -1809,7 +1809,7 @@
|
|||||||
<Param type="Image" name="image" desc="" />
|
<Param type="Image" name="image" desc="" />
|
||||||
<Param type="const char *" name="fileName" desc="" />
|
<Param type="const char *" name="fileName" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="ExportImageToMemory" retType="unsigned char *" paramCount="3" desc="Export image to memory buffer">
|
<Function name="ExportImageToMemory" retType="unsigned char *" paramCount="3" desc="Export image to memory buffer, memory must be MemFree()">
|
||||||
<Param type="Image" name="image" desc="" />
|
<Param type="Image" name="image" desc="" />
|
||||||
<Param type="const char *" name="fileType" desc="" />
|
<Param type="const char *" name="fileType" desc="" />
|
||||||
<Param type="int *" name="fileSize" desc="" />
|
<Param type="int *" name="fileSize" desc="" />
|
||||||
@ -2525,18 +2525,34 @@
|
|||||||
<Param type="const char *" name="begin" desc="" />
|
<Param type="const char *" name="begin" desc="" />
|
||||||
<Param type="const char *" name="end" desc="" />
|
<Param type="const char *" name="end" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextReplace" retType="char *" paramCount="3" desc="Replace text string (WARNING: memory must be freed!)">
|
<Function name="TextReplace" retType="char *" paramCount="3" desc="Replace text string with new string">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="const char *" name="search" desc="" />
|
<Param type="const char *" name="search" desc="" />
|
||||||
<Param type="const char *" name="replacement" desc="" />
|
<Param type="const char *" name="replacement" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextReplaceBetween" retType="char *" paramCount="4" desc="Replace text between two specific strings (WARNING: memory must be freed!)">
|
<Function name="TextReplaceAlloc" retType="char *" paramCount="3" desc="Replace text string with new string, memory must be MemFree()">
|
||||||
|
<Param type="const char *" name="text" desc="" />
|
||||||
|
<Param type="const char *" name="search" desc="" />
|
||||||
|
<Param type="const char *" name="replacement" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="TextReplaceBetween" retType="char *" paramCount="4" desc="Replace text between two specific strings">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="const char *" name="begin" desc="" />
|
<Param type="const char *" name="begin" desc="" />
|
||||||
<Param type="const char *" name="end" desc="" />
|
<Param type="const char *" name="end" desc="" />
|
||||||
<Param type="const char *" name="replacement" desc="" />
|
<Param type="const char *" name="replacement" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextInsert" retType="char *" paramCount="3" desc="Insert text in a position (WARNING: memory must be freed!)">
|
<Function name="TextReplaceBetweenAlloc" retType="char *" paramCount="4" desc="Replace text between two specific strings, memory must be MemFree()">
|
||||||
|
<Param type="const char *" name="text" desc="" />
|
||||||
|
<Param type="const char *" name="begin" desc="" />
|
||||||
|
<Param type="const char *" name="end" desc="" />
|
||||||
|
<Param type="const char *" name="replacement" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="TextInsert" retType="char *" paramCount="3" desc="Insert text in a defined byte position">
|
||||||
|
<Param type="const char *" name="text" desc="" />
|
||||||
|
<Param type="const char *" name="insert" desc="" />
|
||||||
|
<Param type="int" name="position" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="TextInsertAlloc" retType="char *" paramCount="3" desc="Insert text in a defined byte position, memory must be MemFree()">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="const char *" name="insert" desc="" />
|
<Param type="const char *" name="insert" desc="" />
|
||||||
<Param type="int" name="position" desc="" />
|
<Param type="int" name="position" desc="" />
|
||||||
|
|||||||
Reference in New Issue
Block a user