Update raylib_api.* by CI
This commit is contained in:
parent
67d8c1aeec
commit
80fecccca8
|
|
@ -9479,6 +9479,28 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "TextToSnake",
|
||||||
|
"description": "Get Snake case notation version of provided string",
|
||||||
|
"returnType": "const char *",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "const char *",
|
||||||
|
"name": "text"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TextToCamel",
|
||||||
|
"description": "Get Camel case notation version of provided string",
|
||||||
|
"returnType": "const char *",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "const char *",
|
||||||
|
"name": "text"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "TextToInteger",
|
"name": "TextToInteger",
|
||||||
"description": "Get integer value from text (negative values not supported)",
|
"description": "Get integer value from text (negative values not supported)",
|
||||||
|
|
|
||||||
|
|
@ -6776,6 +6776,22 @@ return {
|
||||||
{type = "const char *", name = "text"}
|
{type = "const char *", name = "text"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "TextToSnake",
|
||||||
|
description = "Get Snake case notation version of provided string",
|
||||||
|
returnType = "const char *",
|
||||||
|
params = {
|
||||||
|
{type = "const char *", name = "text"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "TextToCamel",
|
||||||
|
description = "Get Camel case notation version of provided string",
|
||||||
|
returnType = "const char *",
|
||||||
|
params = {
|
||||||
|
{type = "const char *", name = "text"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "TextToInteger",
|
name = "TextToInteger",
|
||||||
description = "Get integer value from text (negative values not supported)",
|
description = "Get integer value from text (negative values not supported)",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -670,7 +670,7 @@
|
||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="564">
|
<Functions count="566">
|
||||||
<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="" />
|
||||||
|
|
@ -2405,6 +2405,12 @@
|
||||||
<Function name="TextToPascal" retType="const char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
<Function name="TextToPascal" retType="const char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
<Function name="TextToSnake" retType="const char *" paramCount="1" desc="Get Snake case notation version of provided string">
|
||||||
|
<Param type="const char *" name="text" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
|
||||||
|
<Param type="const char *" name="text" desc="" />
|
||||||
|
</Function>
|
||||||
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text (negative values not supported)">
|
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text (negative values not supported)">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user