Update raylib_api.* by CI
This commit is contained in:
parent
00396e3436
commit
d8feef5279
@ -3520,6 +3520,11 @@
|
||||
"description": "Get clipboard text content",
|
||||
"returnType": "const char *"
|
||||
},
|
||||
{
|
||||
"name": "GetClipboardImage",
|
||||
"description": "Get clipboard image",
|
||||
"returnType": "Image"
|
||||
},
|
||||
{
|
||||
"name": "EnableEventWaiting",
|
||||
"description": "Enable waiting for events on EndDrawing(), no automatic event polling",
|
||||
|
@ -3397,6 +3397,11 @@ return {
|
||||
description = "Get clipboard text content",
|
||||
returnType = "const char *"
|
||||
},
|
||||
{
|
||||
name = "GetClipboardImage",
|
||||
description = "Get clipboard image",
|
||||
returnType = "Image"
|
||||
},
|
||||
{
|
||||
name = "EnableEventWaiting",
|
||||
description = "Enable waiting for events on EndDrawing(), no automatic event polling",
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -674,7 +674,7 @@
|
||||
<Param type="unsigned int" name="frames" desc="" />
|
||||
</Callback>
|
||||
</Callbacks>
|
||||
<Functions count="580">
|
||||
<Functions count="581">
|
||||
<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="" />
|
||||
@ -795,6 +795,8 @@
|
||||
</Function>
|
||||
<Function name="GetClipboardText" retType="const char *" paramCount="0" desc="Get clipboard text content">
|
||||
</Function>
|
||||
<Function name="GetClipboardImage" retType="Image" paramCount="0" desc="Get clipboard image">
|
||||
</Function>
|
||||
<Function name="EnableEventWaiting" retType="void" paramCount="0" desc="Enable waiting for events on EndDrawing(), no automatic event polling">
|
||||
</Function>
|
||||
<Function name="DisableEventWaiting" retType="void" paramCount="0" desc="Disable waiting for events on EndDrawing(), automatic events polling">
|
||||
|
Loading…
Reference in New Issue
Block a user