mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 06:13:10 +00:00
rlparser: update raylib_api.* by CI
This commit is contained in:
parent
fd28db53ad
commit
b020bed2b3
@ -4851,6 +4851,21 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComputeSHA256",
|
||||
"description": "Compute SHA256 hash code, returns static int[8] (32 bytes)",
|
||||
"returnType": "unsigned int *",
|
||||
"params": [
|
||||
{
|
||||
"type": "unsigned char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
"type": "int",
|
||||
"name": "dataSize"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "LoadAutomationEventList",
|
||||
"description": "Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS",
|
||||
|
||||
@ -4296,6 +4296,15 @@ return {
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "ComputeSHA256",
|
||||
description = "Compute SHA256 hash code, returns static int[8] (32 bytes)",
|
||||
returnType = "unsigned int *",
|
||||
params = {
|
||||
{type = "unsigned char *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "LoadAutomationEventList",
|
||||
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
@ -679,7 +679,7 @@
|
||||
<Param type="unsigned int" name="frames" desc="" />
|
||||
</Callback>
|
||||
</Callbacks>
|
||||
<Functions count="596">
|
||||
<Functions count="597">
|
||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||
<Param type="int" name="width" desc="" />
|
||||
<Param type="int" name="height" desc="" />
|
||||
@ -1168,6 +1168,10 @@
|
||||
<Param type="unsigned char *" name="data" desc="" />
|
||||
<Param type="int" name="dataSize" desc="" />
|
||||
</Function>
|
||||
<Function name="ComputeSHA256" retType="unsigned int *" paramCount="2" desc="Compute SHA256 hash code, returns static int[8] (32 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">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
</Function>
|
||||
|
||||
BIN
tools/rlparser/rlparser
Executable file
BIN
tools/rlparser/rlparser
Executable file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user