mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Update raylib_api.* by CI
This commit is contained in:
@@ -9632,6 +9632,10 @@
|
||||
{
|
||||
"type": "char **",
|
||||
"name": "text"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "lineCount"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@@ -6860,7 +6860,8 @@ return {
|
||||
description = "Unload text lines",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "char **", name = "text"}
|
||||
{type = "char **", name = "text"},
|
||||
{type = "int", name = "lineCount"}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@@ -3681,11 +3681,12 @@ Function 425: LoadTextLines() (2 input parameters)
|
||||
Description: Load text as separate lines ('\n')
|
||||
Param[1]: text (type: const char *)
|
||||
Param[2]: count (type: int *)
|
||||
Function 426: UnloadTextLines() (1 input parameters)
|
||||
Function 426: UnloadTextLines() (2 input parameters)
|
||||
Name: UnloadTextLines
|
||||
Return type: void
|
||||
Description: Unload text lines
|
||||
Param[1]: text (type: char **)
|
||||
Param[2]: lineCount (type: int)
|
||||
Function 427: TextCopy() (2 input parameters)
|
||||
Name: TextCopy
|
||||
Return type: int
|
||||
|
@@ -2440,8 +2440,9 @@
|
||||
<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">
|
||||
<Function name="UnloadTextLines" retType="void" paramCount="2" desc="Unload text lines">
|
||||
<Param type="char **" name="text" desc="" />
|
||||
<Param type="int" name="lineCount" desc="" />
|
||||
</Function>
|
||||
<Function name="TextCopy" retType="int" paramCount="2" desc="Copy one string to another, returns bytes copied">
|
||||
<Param type="char *" name="dst" desc="" />
|
||||
|
Reference in New Issue
Block a user