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