Update raylib_api.* by CI
This commit is contained in:
parent
bf8962dbc7
commit
433cc23ea4
4 changed files with 28 additions and 28 deletions
|
@ -9675,7 +9675,7 @@
|
|||
{
|
||||
"name": "TextJoin",
|
||||
"description": "Join text strings with delimiter",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char **",
|
||||
|
@ -9694,7 +9694,7 @@
|
|||
{
|
||||
"name": "TextSplit",
|
||||
"description": "Split text into multiple strings",
|
||||
"returnType": "const char **",
|
||||
"returnType": "char **",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
@ -9747,7 +9747,7 @@
|
|||
{
|
||||
"name": "TextToUpper",
|
||||
"description": "Get upper case version of provided string",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
@ -9758,7 +9758,7 @@
|
|||
{
|
||||
"name": "TextToLower",
|
||||
"description": "Get lower case version of provided string",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
@ -9769,7 +9769,7 @@
|
|||
{
|
||||
"name": "TextToPascal",
|
||||
"description": "Get Pascal case notation version of provided string",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
@ -9780,7 +9780,7 @@
|
|||
{
|
||||
"name": "TextToSnake",
|
||||
"description": "Get Snake case notation version of provided string",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
@ -9791,7 +9791,7 @@
|
|||
{
|
||||
"name": "TextToCamel",
|
||||
"description": "Get Camel case notation version of provided string",
|
||||
"returnType": "const char *",
|
||||
"returnType": "char *",
|
||||
"params": [
|
||||
{
|
||||
"type": "const char *",
|
||||
|
|
|
@ -6891,7 +6891,7 @@ return {
|
|||
{
|
||||
name = "TextJoin",
|
||||
description = "Join text strings with delimiter",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char **", name = "textList"},
|
||||
{type = "int", name = "count"},
|
||||
|
@ -6901,7 +6901,7 @@ return {
|
|||
{
|
||||
name = "TextSplit",
|
||||
description = "Split text into multiple strings",
|
||||
returnType = "const char **",
|
||||
returnType = "char **",
|
||||
params = {
|
||||
{type = "const char *", name = "text"},
|
||||
{type = "char", name = "delimiter"},
|
||||
|
@ -6930,7 +6930,7 @@ return {
|
|||
{
|
||||
name = "TextToUpper",
|
||||
description = "Get upper case version of provided string",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
|
@ -6938,7 +6938,7 @@ return {
|
|||
{
|
||||
name = "TextToLower",
|
||||
description = "Get lower case version of provided string",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
|
@ -6946,7 +6946,7 @@ return {
|
|||
{
|
||||
name = "TextToPascal",
|
||||
description = "Get Pascal case notation version of provided string",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
|
@ -6954,7 +6954,7 @@ return {
|
|||
{
|
||||
name = "TextToSnake",
|
||||
description = "Get Snake case notation version of provided string",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
|
@ -6962,7 +6962,7 @@ return {
|
|||
{
|
||||
name = "TextToCamel",
|
||||
description = "Get Camel case notation version of provided string",
|
||||
returnType = "const char *",
|
||||
returnType = "char *",
|
||||
params = {
|
||||
{type = "const char *", name = "text"}
|
||||
}
|
||||
|
|
|
@ -3704,14 +3704,14 @@ Function 429: TextInsert() (3 input parameters)
|
|||
Param[3]: position (type: int)
|
||||
Function 430: TextJoin() (3 input parameters)
|
||||
Name: TextJoin
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Join text strings with delimiter
|
||||
Param[1]: textList (type: const char **)
|
||||
Param[2]: count (type: int)
|
||||
Param[3]: delimiter (type: const char *)
|
||||
Function 431: TextSplit() (3 input parameters)
|
||||
Name: TextSplit
|
||||
Return type: const char **
|
||||
Return type: char **
|
||||
Description: Split text into multiple strings
|
||||
Param[1]: text (type: const char *)
|
||||
Param[2]: delimiter (type: char)
|
||||
|
@ -3731,27 +3731,27 @@ Function 433: TextFindIndex() (2 input parameters)
|
|||
Param[2]: find (type: const char *)
|
||||
Function 434: TextToUpper() (1 input parameters)
|
||||
Name: TextToUpper
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Get upper case version of provided string
|
||||
Param[1]: text (type: const char *)
|
||||
Function 435: TextToLower() (1 input parameters)
|
||||
Name: TextToLower
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Get lower case version of provided string
|
||||
Param[1]: text (type: const char *)
|
||||
Function 436: TextToPascal() (1 input parameters)
|
||||
Name: TextToPascal
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Get Pascal case notation version of provided string
|
||||
Param[1]: text (type: const char *)
|
||||
Function 437: TextToSnake() (1 input parameters)
|
||||
Name: TextToSnake
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Get Snake case notation version of provided string
|
||||
Param[1]: text (type: const char *)
|
||||
Function 438: TextToCamel() (1 input parameters)
|
||||
Name: TextToCamel
|
||||
Return type: const char *
|
||||
Return type: char *
|
||||
Description: Get Camel case notation version of provided string
|
||||
Param[1]: text (type: const char *)
|
||||
Function 439: TextToInteger() (1 input parameters)
|
||||
|
|
|
@ -2453,12 +2453,12 @@
|
|||
<Param type="const char *" name="insert" desc="" />
|
||||
<Param type="int" name="position" desc="" />
|
||||
</Function>
|
||||
<Function name="TextJoin" retType="const char *" paramCount="3" desc="Join text strings with delimiter">
|
||||
<Function name="TextJoin" retType="char *" paramCount="3" desc="Join text strings with delimiter">
|
||||
<Param type="const char **" name="textList" desc="" />
|
||||
<Param type="int" name="count" desc="" />
|
||||
<Param type="const char *" name="delimiter" desc="" />
|
||||
</Function>
|
||||
<Function name="TextSplit" retType="const char **" paramCount="3" desc="Split text into multiple strings">
|
||||
<Function name="TextSplit" retType="char **" paramCount="3" desc="Split text into multiple strings">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
<Param type="char" name="delimiter" desc="" />
|
||||
<Param type="int *" name="count" desc="" />
|
||||
|
@ -2472,19 +2472,19 @@
|
|||
<Param type="const char *" name="text" desc="" />
|
||||
<Param type="const char *" name="find" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToUpper" retType="const char *" paramCount="1" desc="Get upper case version of provided string">
|
||||
<Function name="TextToUpper" retType="char *" paramCount="1" desc="Get upper case version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToLower" retType="const char *" paramCount="1" desc="Get lower case version of provided string">
|
||||
<Function name="TextToLower" retType="char *" paramCount="1" desc="Get lower case version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToPascal" retType="const char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
||||
<Function name="TextToPascal" retType="char *" paramCount="1" desc="Get Pascal case notation version of provided string">
|
||||
<Param type="const char *" name="text" desc="" />
|
||||
</Function>
|
||||
<Function name="TextToSnake" retType="const char *" paramCount="1" desc="Get Snake case notation version of provided string">
|
||||
<Function name="TextToSnake" retType="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">
|
||||
<Function name="TextToCamel" retType="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">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue