mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-27 09:07:25 -04:00
Merge branch 'master' of https://github.com/raysan5/raylib
This commit is contained in:
@ -4316,7 +4316,7 @@
|
||||
"name": "fileName"
|
||||
},
|
||||
{
|
||||
"type": "void *",
|
||||
"type": "const void *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
@ -4853,7 +4853,7 @@
|
||||
"returnType": "unsigned int",
|
||||
"params": [
|
||||
{
|
||||
"type": "unsigned char *",
|
||||
"type": "const unsigned char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
@ -4868,7 +4868,7 @@
|
||||
"returnType": "unsigned int *",
|
||||
"params": [
|
||||
{
|
||||
"type": "unsigned char *",
|
||||
"type": "const unsigned char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
@ -4883,7 +4883,7 @@
|
||||
"returnType": "unsigned int *",
|
||||
"params": [
|
||||
{
|
||||
"type": "unsigned char *",
|
||||
"type": "const unsigned char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
@ -4898,7 +4898,7 @@
|
||||
"returnType": "unsigned int *",
|
||||
"params": [
|
||||
{
|
||||
"type": "unsigned char *",
|
||||
"type": "const unsigned char *",
|
||||
"name": "data"
|
||||
},
|
||||
{
|
||||
|
||||
@ -3949,7 +3949,7 @@ return {
|
||||
returnType = "bool",
|
||||
params = {
|
||||
{type = "const char *", name = "fileName"},
|
||||
{type = "void *", name = "data"},
|
||||
{type = "const void *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
@ -4303,7 +4303,7 @@ return {
|
||||
description = "Compute CRC32 hash code",
|
||||
returnType = "unsigned int",
|
||||
params = {
|
||||
{type = "unsigned char *", name = "data"},
|
||||
{type = "const unsigned char *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
@ -4312,7 +4312,7 @@ return {
|
||||
description = "Compute MD5 hash code, returns static int[4] (16 bytes)",
|
||||
returnType = "unsigned int *",
|
||||
params = {
|
||||
{type = "unsigned char *", name = "data"},
|
||||
{type = "const unsigned char *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
@ -4321,7 +4321,7 @@ return {
|
||||
description = "Compute SHA1 hash code, returns static int[5] (20 bytes)",
|
||||
returnType = "unsigned int *",
|
||||
params = {
|
||||
{type = "unsigned char *", name = "data"},
|
||||
{type = "const unsigned char *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
@ -4330,7 +4330,7 @@ return {
|
||||
description = "Compute SHA256 hash code, returns static int[8] (32 bytes)",
|
||||
returnType = "unsigned int *",
|
||||
params = {
|
||||
{type = "unsigned char *", name = "data"},
|
||||
{type = "const unsigned char *", name = "data"},
|
||||
{type = "int", name = "dataSize"}
|
||||
}
|
||||
},
|
||||
|
||||
@ -1619,7 +1619,7 @@ Function 115: SaveFileData() (3 input parameters)
|
||||
Return type: bool
|
||||
Description: Save data to file from byte array (write), returns true on success
|
||||
Param[1]: fileName (type: const char *)
|
||||
Param[2]: data (type: void *)
|
||||
Param[2]: data (type: const void *)
|
||||
Param[3]: dataSize (type: int)
|
||||
Function 116: ExportDataAsCode() (3 input parameters)
|
||||
Name: ExportDataAsCode
|
||||
@ -1856,25 +1856,25 @@ Function 158: ComputeCRC32() (2 input parameters)
|
||||
Name: ComputeCRC32
|
||||
Return type: unsigned int
|
||||
Description: Compute CRC32 hash code
|
||||
Param[1]: data (type: unsigned char *)
|
||||
Param[1]: data (type: const unsigned char *)
|
||||
Param[2]: dataSize (type: int)
|
||||
Function 159: ComputeMD5() (2 input parameters)
|
||||
Name: ComputeMD5
|
||||
Return type: unsigned int *
|
||||
Description: Compute MD5 hash code, returns static int[4] (16 bytes)
|
||||
Param[1]: data (type: unsigned char *)
|
||||
Param[1]: data (type: const unsigned char *)
|
||||
Param[2]: dataSize (type: int)
|
||||
Function 160: ComputeSHA1() (2 input parameters)
|
||||
Name: ComputeSHA1
|
||||
Return type: unsigned int *
|
||||
Description: Compute SHA1 hash code, returns static int[5] (20 bytes)
|
||||
Param[1]: data (type: unsigned char *)
|
||||
Param[1]: data (type: const unsigned char *)
|
||||
Param[2]: dataSize (type: int)
|
||||
Function 161: ComputeSHA256() (2 input parameters)
|
||||
Name: ComputeSHA256
|
||||
Return type: unsigned int *
|
||||
Description: Compute SHA256 hash code, returns static int[8] (32 bytes)
|
||||
Param[1]: data (type: unsigned char *)
|
||||
Param[1]: data (type: const unsigned char *)
|
||||
Param[2]: dataSize (type: int)
|
||||
Function 162: LoadAutomationEventList() (1 input parameters)
|
||||
Name: LoadAutomationEventList
|
||||
|
||||
@ -1021,7 +1021,7 @@
|
||||
</Function>
|
||||
<Function name="SaveFileData" retType="bool" paramCount="3" desc="Save data to file from byte array (write), returns true on success">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
<Param type="void *" name="data" desc="" />
|
||||
<Param type="const void *" name="data" desc="" />
|
||||
<Param type="int" name="dataSize" desc="" />
|
||||
</Function>
|
||||
<Function name="ExportDataAsCode" retType="bool" paramCount="3" desc="Export data to code (.h), returns true on success">
|
||||
@ -1168,19 +1168,19 @@
|
||||
<Param type="int *" name="outputSize" desc="" />
|
||||
</Function>
|
||||
<Function name="ComputeCRC32" retType="unsigned int" paramCount="2" desc="Compute CRC32 hash code">
|
||||
<Param type="unsigned char *" name="data" desc="" />
|
||||
<Param type="const 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="const unsigned char *" name="data" desc="" />
|
||||
<Param type="int" name="dataSize" desc="" />
|
||||
</Function>
|
||||
<Function name="ComputeSHA1" retType="unsigned int *" paramCount="2" desc="Compute SHA1 hash code, returns static int[5] (20 bytes)">
|
||||
<Param type="unsigned char *" name="data" desc="" />
|
||||
<Param type="const 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="const 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">
|
||||
|
||||
Reference in New Issue
Block a user