Bladeren bron

Merge branch 'master' of https://github.com/raysan5/raylib

pull/5170/head
Ray 1 maand geleden
bovenliggende
commit
d980642421
4 gewijzigde bestanden met toevoegingen van 10 en 3 verwijderingen
  1. +4
    -0
      tools/parser/output/raylib_api.json
  2. +2
    -1
      tools/parser/output/raylib_api.lua
  3. +2
    -1
      tools/parser/output/raylib_api.txt
  4. +2
    -1
      tools/parser/output/raylib_api.xml

+ 4
- 0
tools/parser/output/raylib_api.json Bestand weergeven

@ -9632,6 +9632,10 @@
{
"type": "char **",
"name": "text"
},
{
"type": "int",
"name": "lineCount"
}
]
},

+ 2
- 1
tools/parser/output/raylib_api.lua Bestand weergeven

@ -6860,7 +6860,8 @@ return {
description = "Unload text lines",
returnType = "void",
params = {
{type = "char **", name = "text"}
{type = "char **", name = "text"},
{type = "int", name = "lineCount"}
}
},
{

+ 2
- 1
tools/parser/output/raylib_api.txt Bestand weergeven

@ -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

+ 2
- 1
tools/parser/output/raylib_api.xml Bestand weergeven

@ -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="" />

Laden…
Annuleren
Opslaan