mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-18 09:18:15 +00:00
Update raylib_api.* by CI
This commit is contained in:
@@ -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",
|
||||||
|
@@ -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
@@ -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="" />
|
||||||
|
Reference in New Issue
Block a user