mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
@@ -9632,6 +9632,10 @@
|
|||||||
{
|
{
|
||||||
"type": "char **",
|
"type": "char **",
|
||||||
"name": "text"
|
"name": "text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "int",
|
||||||
|
"name": "lineCount"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@@ -6860,7 +6860,8 @@ return {
|
|||||||
description = "Unload text lines",
|
description = "Unload text lines",
|
||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
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')
|
Description: Load text as separate lines ('\n')
|
||||||
Param[1]: text (type: const char *)
|
Param[1]: text (type: const char *)
|
||||||
Param[2]: count (type: int *)
|
Param[2]: count (type: int *)
|
||||||
Function 426: UnloadTextLines() (1 input parameters)
|
Function 426: UnloadTextLines() (2 input parameters)
|
||||||
Name: UnloadTextLines
|
Name: UnloadTextLines
|
||||||
Return type: void
|
Return type: void
|
||||||
Description: Unload text lines
|
Description: Unload text lines
|
||||||
Param[1]: text (type: char **)
|
Param[1]: text (type: char **)
|
||||||
|
Param[2]: lineCount (type: int)
|
||||||
Function 427: TextCopy() (2 input parameters)
|
Function 427: TextCopy() (2 input parameters)
|
||||||
Name: TextCopy
|
Name: TextCopy
|
||||||
Return type: int
|
Return type: int
|
||||||
|
@@ -2440,8 +2440,9 @@
|
|||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
<Param type="int *" name="count" desc="" />
|
<Param type="int *" name="count" desc="" />
|
||||||
</Function>
|
</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="char **" name="text" desc="" />
|
||||||
|
<Param type="int" name="lineCount" desc="" />
|
||||||
</Function>
|
</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="" />
|
||||||
|
Reference in New Issue
Block a user