Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-08-26 08:17:48 +00:00
parent d2f6c4924c
commit 7103703313
4 changed files with 223 additions and 162 deletions

View File

@@ -9605,6 +9605,32 @@
} }
] ]
}, },
{
"name": "LoadTextLines",
"description": "Load text as separate lines ('\\n')",
"returnType": "char **",
"params": [
{
"type": "const char *",
"name": "text"
},
{
"type": "int *",
"name": "count"
}
]
},
{
"name": "UnloadTextLines",
"description": "Unload text lines",
"returnType": "void",
"params": [
{
"type": "char **",
"name": "text"
}
]
},
{ {
"name": "TextCopy", "name": "TextCopy",
"description": "Copy one string to another, returns bytes copied", "description": "Copy one string to another, returns bytes copied",

View File

@@ -6845,6 +6845,23 @@ return {
{type = "int *", name = "utf8Size"} {type = "int *", name = "utf8Size"}
} }
}, },
{
name = "LoadTextLines",
description = "Load text as separate lines ('\\n')",
returnType = "char **",
params = {
{type = "const char *", name = "text"},
{type = "int *", name = "count"}
}
},
{
name = "UnloadTextLines",
description = "Unload text lines",
returnType = "void",
params = {
{type = "char **", name = "text"}
}
},
{ {
name = "TextCopy", name = "TextCopy",
description = "Copy one string to another, returns bytes copied", description = "Copy one string to another, returns bytes copied",

File diff suppressed because it is too large Load Diff

View File

@@ -679,7 +679,7 @@
<Param type="unsigned int" name="frames" desc="" /> <Param type="unsigned int" name="frames" desc="" />
</Callback> </Callback>
</Callbacks> </Callbacks>
<Functions count="584"> <Functions count="586">
<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="" />
@@ -2435,6 +2435,13 @@
<Param type="int" name="codepoint" desc="" /> <Param type="int" name="codepoint" desc="" />
<Param type="int *" name="utf8Size" desc="" /> <Param type="int *" name="utf8Size" desc="" />
</Function> </Function>
<Function name="LoadTextLines" retType="char **" paramCount="2" desc="Load text as separate lines ('\n')">
<Param type="const char *" name="text" desc="" />
<Param type="int *" name="count" desc="" />
</Function>
<Function name="UnloadTextLines" retType="void" paramCount="1" desc="Unload text lines">
<Param type="char **" name="text" desc="" />
</Function>
<Function name="TextCopy" retType="int" paramCount="2" desc="Copy one string to another, returns bytes copied"> <Function name="TextCopy" retType="int" paramCount="2" desc="Copy one string to another, returns bytes copied">
<Param type="char *" name="dst" desc="" /> <Param type="char *" name="dst" desc="" />
<Param type="const char *" name="src" desc="" /> <Param type="const char *" name="src" desc="" />