Skip to content

Commit 7103703

Browse files
Update raylib_api.* by CI
1 parent d2f6c49 commit 7103703

File tree

4 files changed

+223
-162
lines changed

4 files changed

+223
-162
lines changed

tools/parser/output/raylib_api.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9605,6 +9605,32 @@
96059605
}
96069606
]
96079607
},
9608+
{
9609+
"name": "LoadTextLines",
9610+
"description": "Load text as separate lines ('\\n')",
9611+
"returnType": "char **",
9612+
"params": [
9613+
{
9614+
"type": "const char *",
9615+
"name": "text"
9616+
},
9617+
{
9618+
"type": "int *",
9619+
"name": "count"
9620+
}
9621+
]
9622+
},
9623+
{
9624+
"name": "UnloadTextLines",
9625+
"description": "Unload text lines",
9626+
"returnType": "void",
9627+
"params": [
9628+
{
9629+
"type": "char **",
9630+
"name": "text"
9631+
}
9632+
]
9633+
},
96089634
{
96099635
"name": "TextCopy",
96109636
"description": "Copy one string to another, returns bytes copied",

tools/parser/output/raylib_api.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6845,6 +6845,23 @@ return {
68456845
{type = "int *", name = "utf8Size"}
68466846
}
68476847
},
6848+
{
6849+
name = "LoadTextLines",
6850+
description = "Load text as separate lines ('\\n')",
6851+
returnType = "char **",
6852+
params = {
6853+
{type = "const char *", name = "text"},
6854+
{type = "int *", name = "count"}
6855+
}
6856+
},
6857+
{
6858+
name = "UnloadTextLines",
6859+
description = "Unload text lines",
6860+
returnType = "void",
6861+
params = {
6862+
{type = "char **", name = "text"}
6863+
}
6864+
},
68486865
{
68496866
name = "TextCopy",
68506867
description = "Copy one string to another, returns bytes copied",

0 commit comments

Comments
 (0)