本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
Archivist
/
raylib-src
镜像来自
https://github.com/raysan5/raylib
關注
1
收藏
0
複製
0
程式碼
問題
0
版本發佈
24
Wiki
活動
瀏覽代碼
Update raylib_api.* by CI
pull/4391/head
github-actions[bot]
2 月之前
父節點
361b0e85c1
當前提交
9b3d019502
共有
4 個檔案被更改
,包括
499 行新增
和
431 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+30
-0
parser/output/raylib_api.json
+18
-0
parser/output/raylib_api.lua
+442
-430
parser/output/raylib_api.txt
+9
-1
parser/output/raylib_api.xml
+ 30
- 0
parser/output/raylib_api.json
查看文件
@ -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"
,
"description"
:
"Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS"
,
+ 18
- 0
parser/output/raylib_api.lua
查看文件
@ -4190,6 +4190,24 @@ return {
{
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
"
,
description
=
"
Load automation events list from file, NULL for empty list, capacity = MAX_AUTOMATION_EVENTS
"
,
+ 442
- 430
parser/output/raylib_api.txt
文件差異過大導致無法顯示
查看文件
+ 9
- 1
parser/output/raylib_api.xml
查看文件
@ -675,7 +675,7 @@
<Param
type=
"unsigned int"
name=
"frames"
desc=
""
/>
</Callback>
</Callbacks>
<Functions
count=
"57
7
"
>
<Functions
count=
"57
9
"
>
<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=
""
/>
@ -1126,6 +1126,14 @@
<Param
type=
"const unsigned char *"
name=
"data"
desc=
""
/>
<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=
"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"
>
<Param
type=
"const char *"
name=
"fileName"
desc=
""
/>
</Function>
Write
Preview
Loading…
取消
儲存