Update raylib_api.* by CI
This commit is contained in:
parent
361b0e85c1
commit
9b3d019502
4 changed files with 499 additions and 431 deletions
|
@ -4691,6 +4691,36 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "ComputeCRC32",
|
||||||
|
"description": "Compute CRC32 hash code",
|
||||||
|
"returnType": "unsigned int",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "unsigned char *",
|
||||||
|
"name": "data"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "int",
|
||||||
|
"name": "dataSize"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ComputeMD5",
|
||||||
|
"description": "Compute MD5 hash code, returns static int[4] (16 bytes)",
|
||||||
|
"returnType": "unsigned int *",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "unsigned char *",
|
||||||
|
"name": "data"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "int",
|
||||||
|
"name": "dataSize"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "LoadAutomationEventList",
|
"name": "LoadAutomationEventList",
|
||||||
"description": "Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS",
|
"description": "Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS",
|
||||||
|
|
|
@ -4190,6 +4190,24 @@ return {
|
||||||
{type = "int *", name = "outputSize"}
|
{type = "int *", name = "outputSize"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "ComputeCRC32",
|
||||||
|
description = "Compute CRC32 hash code",
|
||||||
|
returnType = "unsigned int",
|
||||||
|
params = {
|
||||||
|
{type = "unsigned char *", name = "data"},
|
||||||
|
{type = "int", name = "dataSize"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "ComputeMD5",
|
||||||
|
description = "Compute MD5 hash code, returns static int[4] (16 bytes)",
|
||||||
|
returnType = "unsigned int *",
|
||||||
|
params = {
|
||||||
|
{type = "unsigned char *", name = "data"},
|
||||||
|
{type = "int", name = "dataSize"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "LoadAutomationEventList",
|
name = "LoadAutomationEventList",
|
||||||
description = "Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS",
|
description = "Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -675,7 +675,7 @@
|
||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="577">
|
<Functions count="579">
|
||||||
<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="" />
|
||||||
|
@ -1126,6 +1126,14 @@
|
||||||
<Param type="const unsigned char *" name="data" desc="" />
|
<Param type="const unsigned char *" name="data" desc="" />
|
||||||
<Param type="int *" name="outputSize" desc="" />
|
<Param type="int *" name="outputSize" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">
|
||||||
|
<Param type="unsigned char *" name="data" desc="" />
|
||||||
|
<Param type="int" name="dataSize" desc="" />
|
||||||
|
</Function>
|
||||||
|
<Function name="ComputeMD5" retType="unsigned int *" paramCount="2" desc="Compute MD5 hash code, returns static int[4] (16 bytes)">
|
||||||
|
<Param type="unsigned char *" name="data" desc="" />
|
||||||
|
<Param type="int" name="dataSize" desc="" />
|
||||||
|
</Function>
|
||||||
<Function name="LoadAutomationEventList" retType="AutomationEventList" paramCount="1" desc="Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS">
|
<Function name="LoadAutomationEventList" retType="AutomationEventList" paramCount="1" desc="Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS">
|
||||||
<Param type="const char *" name="fileName" desc="" />
|
<Param type="const char *" name="fileName" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue