浏览代码

Update raylib_api.* by CI

pull/4428/head
github-actions[bot] 5 个月前
父节点
当前提交
c6a58d9744
共有 4 个文件被更改,包括 72 次插入72 次删除
  1. +18
    -18
      parser/output/raylib_api.json
  2. +18
    -18
      parser/output/raylib_api.lua
  3. +18
    -18
      parser/output/raylib_api.txt
  4. +18
    -18
      parser/output/raylib_api.xml

+ 18
- 18
parser/output/raylib_api.json 查看文件

@ -27,7 +27,7 @@
{ {
"name": "RAYLIB_VERSION", "name": "RAYLIB_VERSION",
"type": "STRING", "type": "STRING",
"value": "5.5-dev",
"value": "5.5",
"description": "" "description": ""
}, },
{ {
@ -3177,22 +3177,22 @@
}, },
{ {
"name": "IsWindowHidden", "name": "IsWindowHidden",
"description": "Check if window is currently hidden (only PLATFORM_DESKTOP)",
"description": "Check if window is currently hidden",
"returnType": "bool" "returnType": "bool"
}, },
{ {
"name": "IsWindowMinimized", "name": "IsWindowMinimized",
"description": "Check if window is currently minimized (only PLATFORM_DESKTOP)",
"description": "Check if window is currently minimized",
"returnType": "bool" "returnType": "bool"
}, },
{ {
"name": "IsWindowMaximized", "name": "IsWindowMaximized",
"description": "Check if window is currently maximized (only PLATFORM_DESKTOP)",
"description": "Check if window is currently maximized",
"returnType": "bool" "returnType": "bool"
}, },
{ {
"name": "IsWindowFocused", "name": "IsWindowFocused",
"description": "Check if window is currently focused (only PLATFORM_DESKTOP)",
"description": "Check if window is currently focused",
"returnType": "bool" "returnType": "bool"
}, },
{ {
@ -3213,7 +3213,7 @@
}, },
{ {
"name": "SetWindowState", "name": "SetWindowState",
"description": "Set window configuration state using flags (only PLATFORM_DESKTOP)",
"description": "Set window configuration state using flags",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3235,32 +3235,32 @@
}, },
{ {
"name": "ToggleFullscreen", "name": "ToggleFullscreen",
"description": "Toggle window state: fullscreen/windowed [resizes monitor to match window resolution] (only PLATFORM_DESKTOP)",
"description": "Toggle window state: fullscreen/windowed, resizes monitor to match window resolution",
"returnType": "void" "returnType": "void"
}, },
{ {
"name": "ToggleBorderlessWindowed", "name": "ToggleBorderlessWindowed",
"description": "Toggle window state: borderless windowed [resizes window to match monitor resolution] (only PLATFORM_DESKTOP)",
"description": "Toggle window state: borderless windowed, resizes window to match monitor resolution",
"returnType": "void" "returnType": "void"
}, },
{ {
"name": "MaximizeWindow", "name": "MaximizeWindow",
"description": "Set window state: maximized, if resizable (only PLATFORM_DESKTOP)",
"description": "Set window state: maximized, if resizable",
"returnType": "void" "returnType": "void"
}, },
{ {
"name": "MinimizeWindow", "name": "MinimizeWindow",
"description": "Set window state: minimized, if resizable (only PLATFORM_DESKTOP)",
"description": "Set window state: minimized, if resizable",
"returnType": "void" "returnType": "void"
}, },
{ {
"name": "RestoreWindow", "name": "RestoreWindow",
"description": "Set window state: not minimized/maximized (only PLATFORM_DESKTOP)",
"description": "Set window state: not minimized/maximized",
"returnType": "void" "returnType": "void"
}, },
{ {
"name": "SetWindowIcon", "name": "SetWindowIcon",
"description": "Set icon for window (single image, RGBA 32bit, only PLATFORM_DESKTOP)",
"description": "Set icon for window (single image, RGBA 32bit)",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3271,7 +3271,7 @@
}, },
{ {
"name": "SetWindowIcons", "name": "SetWindowIcons",
"description": "Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)",
"description": "Set icon for window (multiple images, RGBA 32bit)",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3286,7 +3286,7 @@
}, },
{ {
"name": "SetWindowTitle", "name": "SetWindowTitle",
"description": "Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)",
"description": "Set title for window",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3297,7 +3297,7 @@
}, },
{ {
"name": "SetWindowPosition", "name": "SetWindowPosition",
"description": "Set window position on screen (only PLATFORM_DESKTOP)",
"description": "Set window position on screen",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3368,7 +3368,7 @@
}, },
{ {
"name": "SetWindowOpacity", "name": "SetWindowOpacity",
"description": "Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)",
"description": "Set window opacity [0.0f..1.0f]",
"returnType": "void", "returnType": "void",
"params": [ "params": [
{ {
@ -3379,7 +3379,7 @@
}, },
{ {
"name": "SetWindowFocused", "name": "SetWindowFocused",
"description": "Set window focused (only PLATFORM_DESKTOP)",
"description": "Set window focused",
"returnType": "void" "returnType": "void"
}, },
{ {
@ -4824,7 +4824,7 @@
}, },
{ {
"name": "IsKeyPressedRepeat", "name": "IsKeyPressedRepeat",
"description": "Check if a key has been pressed again (Only PLATFORM_DESKTOP)",
"description": "Check if a key has been pressed again",
"returnType": "bool", "returnType": "bool",
"params": [ "params": [
{ {

+ 18
- 18
parser/output/raylib_api.lua 查看文件

@ -27,7 +27,7 @@ return {
{ {
name = "RAYLIB_VERSION", name = "RAYLIB_VERSION",
type = "STRING", type = "STRING",
value = "5.5-dev",
value = "5.5",
description = "" description = ""
}, },
{ {
@ -3129,22 +3129,22 @@ return {
}, },
{ {
name = "IsWindowHidden", name = "IsWindowHidden",
description = "Check if window is currently hidden (only PLATFORM_DESKTOP)",
description = "Check if window is currently hidden",
returnType = "bool" returnType = "bool"
}, },
{ {
name = "IsWindowMinimized", name = "IsWindowMinimized",
description = "Check if window is currently minimized (only PLATFORM_DESKTOP)",
description = "Check if window is currently minimized",
returnType = "bool" returnType = "bool"
}, },
{ {
name = "IsWindowMaximized", name = "IsWindowMaximized",
description = "Check if window is currently maximized (only PLATFORM_DESKTOP)",
description = "Check if window is currently maximized",
returnType = "bool" returnType = "bool"
}, },
{ {
name = "IsWindowFocused", name = "IsWindowFocused",
description = "Check if window is currently focused (only PLATFORM_DESKTOP)",
description = "Check if window is currently focused",
returnType = "bool" returnType = "bool"
}, },
{ {
@ -3162,7 +3162,7 @@ return {
}, },
{ {
name = "SetWindowState", name = "SetWindowState",
description = "Set window configuration state using flags (only PLATFORM_DESKTOP)",
description = "Set window configuration state using flags",
returnType = "void", returnType = "void",
params = { params = {
{type = "unsigned int", name = "flags"} {type = "unsigned int", name = "flags"}
@ -3178,32 +3178,32 @@ return {
}, },
{ {
name = "ToggleFullscreen", name = "ToggleFullscreen",
description = "Toggle window state: fullscreen/windowed [resizes monitor to match window resolution] (only PLATFORM_DESKTOP)",
description = "Toggle window state: fullscreen/windowed, resizes monitor to match window resolution",
returnType = "void" returnType = "void"
}, },
{ {
name = "ToggleBorderlessWindowed", name = "ToggleBorderlessWindowed",
description = "Toggle window state: borderless windowed [resizes window to match monitor resolution] (only PLATFORM_DESKTOP)",
description = "Toggle window state: borderless windowed, resizes window to match monitor resolution",
returnType = "void" returnType = "void"
}, },
{ {
name = "MaximizeWindow", name = "MaximizeWindow",
description = "Set window state: maximized, if resizable (only PLATFORM_DESKTOP)",
description = "Set window state: maximized, if resizable",
returnType = "void" returnType = "void"
}, },
{ {
name = "MinimizeWindow", name = "MinimizeWindow",
description = "Set window state: minimized, if resizable (only PLATFORM_DESKTOP)",
description = "Set window state: minimized, if resizable",
returnType = "void" returnType = "void"
}, },
{ {
name = "RestoreWindow", name = "RestoreWindow",
description = "Set window state: not minimized/maximized (only PLATFORM_DESKTOP)",
description = "Set window state: not minimized/maximized",
returnType = "void" returnType = "void"
}, },
{ {
name = "SetWindowIcon", name = "SetWindowIcon",
description = "Set icon for window (single image, RGBA 32bit, only PLATFORM_DESKTOP)",
description = "Set icon for window (single image, RGBA 32bit)",
returnType = "void", returnType = "void",
params = { params = {
{type = "Image", name = "image"} {type = "Image", name = "image"}
@ -3211,7 +3211,7 @@ return {
}, },
{ {
name = "SetWindowIcons", name = "SetWindowIcons",
description = "Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)",
description = "Set icon for window (multiple images, RGBA 32bit)",
returnType = "void", returnType = "void",
params = { params = {
{type = "Image *", name = "images"}, {type = "Image *", name = "images"},
@ -3220,7 +3220,7 @@ return {
}, },
{ {
name = "SetWindowTitle", name = "SetWindowTitle",
description = "Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)",
description = "Set title for window",
returnType = "void", returnType = "void",
params = { params = {
{type = "const char *", name = "title"} {type = "const char *", name = "title"}
@ -3228,7 +3228,7 @@ return {
}, },
{ {
name = "SetWindowPosition", name = "SetWindowPosition",
description = "Set window position on screen (only PLATFORM_DESKTOP)",
description = "Set window position on screen",
returnType = "void", returnType = "void",
params = { params = {
{type = "int", name = "x"}, {type = "int", name = "x"},
@ -3272,7 +3272,7 @@ return {
}, },
{ {
name = "SetWindowOpacity", name = "SetWindowOpacity",
description = "Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)",
description = "Set window opacity [0.0f..1.0f]",
returnType = "void", returnType = "void",
params = { params = {
{type = "float", name = "opacity"} {type = "float", name = "opacity"}
@ -3280,7 +3280,7 @@ return {
}, },
{ {
name = "SetWindowFocused", name = "SetWindowFocused",
description = "Set window focused (only PLATFORM_DESKTOP)",
description = "Set window focused",
returnType = "void" returnType = "void"
}, },
{ {
@ -4281,7 +4281,7 @@ return {
}, },
{ {
name = "IsKeyPressedRepeat", name = "IsKeyPressedRepeat",
description = "Check if a key has been pressed again (Only PLATFORM_DESKTOP)",
description = "Check if a key has been pressed again",
returnType = "bool", returnType = "bool",
params = { params = {
{type = "int", name = "key"} {type = "int", name = "key"}

+ 18
- 18
parser/output/raylib_api.txt 查看文件

@ -24,7 +24,7 @@ Define 004: RAYLIB_VERSION_PATCH
Define 005: RAYLIB_VERSION Define 005: RAYLIB_VERSION
Name: RAYLIB_VERSION Name: RAYLIB_VERSION
Type: STRING Type: STRING
Value: "5.5-dev"
Value: "5.5"
Description: Description:
Define 006: __declspec(x) Define 006: __declspec(x)
Name: __declspec(x) Name: __declspec(x)
@ -1020,22 +1020,22 @@ Function 005: IsWindowFullscreen() (0 input parameters)
Function 006: IsWindowHidden() (0 input parameters) Function 006: IsWindowHidden() (0 input parameters)
Name: IsWindowHidden Name: IsWindowHidden
Return type: bool Return type: bool
Description: Check if window is currently hidden (only PLATFORM_DESKTOP)
Description: Check if window is currently hidden
No input parameters No input parameters
Function 007: IsWindowMinimized() (0 input parameters) Function 007: IsWindowMinimized() (0 input parameters)
Name: IsWindowMinimized Name: IsWindowMinimized
Return type: bool Return type: bool
Description: Check if window is currently minimized (only PLATFORM_DESKTOP)
Description: Check if window is currently minimized
No input parameters No input parameters
Function 008: IsWindowMaximized() (0 input parameters) Function 008: IsWindowMaximized() (0 input parameters)
Name: IsWindowMaximized Name: IsWindowMaximized
Return type: bool Return type: bool
Description: Check if window is currently maximized (only PLATFORM_DESKTOP)
Description: Check if window is currently maximized
No input parameters No input parameters
Function 009: IsWindowFocused() (0 input parameters) Function 009: IsWindowFocused() (0 input parameters)
Name: IsWindowFocused Name: IsWindowFocused
Return type: bool Return type: bool
Description: Check if window is currently focused (only PLATFORM_DESKTOP)
Description: Check if window is currently focused
No input parameters No input parameters
Function 010: IsWindowResized() (0 input parameters) Function 010: IsWindowResized() (0 input parameters)
Name: IsWindowResized Name: IsWindowResized
@ -1050,7 +1050,7 @@ Function 011: IsWindowState() (1 input parameters)
Function 012: SetWindowState() (1 input parameters) Function 012: SetWindowState() (1 input parameters)
Name: SetWindowState Name: SetWindowState
Return type: void Return type: void
Description: Set window configuration state using flags (only PLATFORM_DESKTOP)
Description: Set window configuration state using flags
Param[1]: flags (type: unsigned int) Param[1]: flags (type: unsigned int)
Function 013: ClearWindowState() (1 input parameters) Function 013: ClearWindowState() (1 input parameters)
Name: ClearWindowState Name: ClearWindowState
@ -1060,48 +1060,48 @@ Function 013: ClearWindowState() (1 input parameters)
Function 014: ToggleFullscreen() (0 input parameters) Function 014: ToggleFullscreen() (0 input parameters)
Name: ToggleFullscreen Name: ToggleFullscreen
Return type: void Return type: void
Description: Toggle window state: fullscreen/windowed [resizes monitor to match window resolution] (only PLATFORM_DESKTOP)
Description: Toggle window state: fullscreen/windowed, resizes monitor to match window resolution
No input parameters No input parameters
Function 015: ToggleBorderlessWindowed() (0 input parameters) Function 015: ToggleBorderlessWindowed() (0 input parameters)
Name: ToggleBorderlessWindowed Name: ToggleBorderlessWindowed
Return type: void Return type: void
Description: Toggle window state: borderless windowed [resizes window to match monitor resolution] (only PLATFORM_DESKTOP)
Description: Toggle window state: borderless windowed, resizes window to match monitor resolution
No input parameters No input parameters
Function 016: MaximizeWindow() (0 input parameters) Function 016: MaximizeWindow() (0 input parameters)
Name: MaximizeWindow Name: MaximizeWindow
Return type: void Return type: void
Description: Set window state: maximized, if resizable (only PLATFORM_DESKTOP)
Description: Set window state: maximized, if resizable
No input parameters No input parameters
Function 017: MinimizeWindow() (0 input parameters) Function 017: MinimizeWindow() (0 input parameters)
Name: MinimizeWindow Name: MinimizeWindow
Return type: void Return type: void
Description: Set window state: minimized, if resizable (only PLATFORM_DESKTOP)
Description: Set window state: minimized, if resizable
No input parameters No input parameters
Function 018: RestoreWindow() (0 input parameters) Function 018: RestoreWindow() (0 input parameters)
Name: RestoreWindow Name: RestoreWindow
Return type: void Return type: void
Description: Set window state: not minimized/maximized (only PLATFORM_DESKTOP)
Description: Set window state: not minimized/maximized
No input parameters No input parameters
Function 019: SetWindowIcon() (1 input parameters) Function 019: SetWindowIcon() (1 input parameters)
Name: SetWindowIcon Name: SetWindowIcon
Return type: void Return type: void
Description: Set icon for window (single image, RGBA 32bit, only PLATFORM_DESKTOP)
Description: Set icon for window (single image, RGBA 32bit)
Param[1]: image (type: Image) Param[1]: image (type: Image)
Function 020: SetWindowIcons() (2 input parameters) Function 020: SetWindowIcons() (2 input parameters)
Name: SetWindowIcons Name: SetWindowIcons
Return type: void Return type: void
Description: Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)
Description: Set icon for window (multiple images, RGBA 32bit)
Param[1]: images (type: Image *) Param[1]: images (type: Image *)
Param[2]: count (type: int) Param[2]: count (type: int)
Function 021: SetWindowTitle() (1 input parameters) Function 021: SetWindowTitle() (1 input parameters)
Name: SetWindowTitle Name: SetWindowTitle
Return type: void Return type: void
Description: Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)
Description: Set title for window
Param[1]: title (type: const char *) Param[1]: title (type: const char *)
Function 022: SetWindowPosition() (2 input parameters) Function 022: SetWindowPosition() (2 input parameters)
Name: SetWindowPosition Name: SetWindowPosition
Return type: void Return type: void
Description: Set window position on screen (only PLATFORM_DESKTOP)
Description: Set window position on screen
Param[1]: x (type: int) Param[1]: x (type: int)
Param[2]: y (type: int) Param[2]: y (type: int)
Function 023: SetWindowMonitor() (1 input parameters) Function 023: SetWindowMonitor() (1 input parameters)
@ -1130,12 +1130,12 @@ Function 026: SetWindowSize() (2 input parameters)
Function 027: SetWindowOpacity() (1 input parameters) Function 027: SetWindowOpacity() (1 input parameters)
Name: SetWindowOpacity Name: SetWindowOpacity
Return type: void Return type: void
Description: Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)
Description: Set window opacity [0.0f..1.0f]
Param[1]: opacity (type: float) Param[1]: opacity (type: float)
Function 028: SetWindowFocused() (0 input parameters) Function 028: SetWindowFocused() (0 input parameters)
Name: SetWindowFocused Name: SetWindowFocused
Return type: void Return type: void
Description: Set window focused (only PLATFORM_DESKTOP)
Description: Set window focused
No input parameters No input parameters
Function 029: GetWindowHandle() (0 input parameters) Function 029: GetWindowHandle() (0 input parameters)
Name: GetWindowHandle Name: GetWindowHandle
@ -1854,7 +1854,7 @@ Function 160: IsKeyPressed() (1 input parameters)
Function 161: IsKeyPressedRepeat() (1 input parameters) Function 161: IsKeyPressedRepeat() (1 input parameters)
Name: IsKeyPressedRepeat Name: IsKeyPressedRepeat
Return type: bool Return type: bool
Description: Check if a key has been pressed again (Only PLATFORM_DESKTOP)
Description: Check if a key has been pressed again
Param[1]: key (type: int) Param[1]: key (type: int)
Function 162: IsKeyDown() (1 input parameters) Function 162: IsKeyDown() (1 input parameters)
Name: IsKeyDown Name: IsKeyDown

+ 18
- 18
parser/output/raylib_api.xml 查看文件

@ -5,7 +5,7 @@
<Define name="RAYLIB_VERSION_MAJOR" type="INT" value="5" desc="" /> <Define name="RAYLIB_VERSION_MAJOR" type="INT" value="5" desc="" />
<Define name="RAYLIB_VERSION_MINOR" type="INT" value="5" desc="" /> <Define name="RAYLIB_VERSION_MINOR" type="INT" value="5" desc="" />
<Define name="RAYLIB_VERSION_PATCH" type="INT" value="0" desc="" /> <Define name="RAYLIB_VERSION_PATCH" type="INT" value="0" desc="" />
<Define name="RAYLIB_VERSION" type="STRING" value="5.5-dev" desc="" />
<Define name="RAYLIB_VERSION" type="STRING" value="5.5" desc="" />
<Define name="__declspec(x)" type="MACRO" value="__attribute__((x))" desc="" /> <Define name="__declspec(x)" type="MACRO" value="__attribute__((x))" desc="" />
<Define name="RLAPI" type="UNKNOWN" value="__declspec(dllexport)" desc="We are building the library as a Win32 shared library (.dll)" /> <Define name="RLAPI" type="UNKNOWN" value="__declspec(dllexport)" desc="We are building the library as a Win32 shared library (.dll)" />
<Define name="PI" type="FLOAT" value="3.14159265358979323846" desc="" /> <Define name="PI" type="FLOAT" value="3.14159265358979323846" desc="" />
@ -688,46 +688,46 @@
</Function> </Function>
<Function name="IsWindowFullscreen" retType="bool" paramCount="0" desc="Check if window is currently fullscreen"> <Function name="IsWindowFullscreen" retType="bool" paramCount="0" desc="Check if window is currently fullscreen">
</Function> </Function>
<Function name="IsWindowHidden" retType="bool" paramCount="0" desc="Check if window is currently hidden (only PLATFORM_DESKTOP)">
<Function name="IsWindowHidden" retType="bool" paramCount="0" desc="Check if window is currently hidden">
</Function> </Function>
<Function name="IsWindowMinimized" retType="bool" paramCount="0" desc="Check if window is currently minimized (only PLATFORM_DESKTOP)">
<Function name="IsWindowMinimized" retType="bool" paramCount="0" desc="Check if window is currently minimized">
</Function> </Function>
<Function name="IsWindowMaximized" retType="bool" paramCount="0" desc="Check if window is currently maximized (only PLATFORM_DESKTOP)">
<Function name="IsWindowMaximized" retType="bool" paramCount="0" desc="Check if window is currently maximized">
</Function> </Function>
<Function name="IsWindowFocused" retType="bool" paramCount="0" desc="Check if window is currently focused (only PLATFORM_DESKTOP)">
<Function name="IsWindowFocused" retType="bool" paramCount="0" desc="Check if window is currently focused">
</Function> </Function>
<Function name="IsWindowResized" retType="bool" paramCount="0" desc="Check if window has been resized last frame"> <Function name="IsWindowResized" retType="bool" paramCount="0" desc="Check if window has been resized last frame">
</Function> </Function>
<Function name="IsWindowState" retType="bool" paramCount="1" desc="Check if one specific window flag is enabled"> <Function name="IsWindowState" retType="bool" paramCount="1" desc="Check if one specific window flag is enabled">
<Param type="unsigned int" name="flag" desc="" /> <Param type="unsigned int" name="flag" desc="" />
</Function> </Function>
<Function name="SetWindowState" retType="void" paramCount="1" desc="Set window configuration state using flags (only PLATFORM_DESKTOP)">
<Function name="SetWindowState" retType="void" paramCount="1" desc="Set window configuration state using flags">
<Param type="unsigned int" name="flags" desc="" /> <Param type="unsigned int" name="flags" desc="" />
</Function> </Function>
<Function name="ClearWindowState" retType="void" paramCount="1" desc="Clear window configuration state flags"> <Function name="ClearWindowState" retType="void" paramCount="1" desc="Clear window configuration state flags">
<Param type="unsigned int" name="flags" desc="" /> <Param type="unsigned int" name="flags" desc="" />
</Function> </Function>
<Function name="ToggleFullscreen" retType="void" paramCount="0" desc="Toggle window state: fullscreen/windowed [resizes monitor to match window resolution] (only PLATFORM_DESKTOP)">
<Function name="ToggleFullscreen" retType="void" paramCount="0" desc="Toggle window state: fullscreen/windowed, resizes monitor to match window resolution">
</Function> </Function>
<Function name="ToggleBorderlessWindowed" retType="void" paramCount="0" desc="Toggle window state: borderless windowed [resizes window to match monitor resolution] (only PLATFORM_DESKTOP)">
<Function name="ToggleBorderlessWindowed" retType="void" paramCount="0" desc="Toggle window state: borderless windowed, resizes window to match monitor resolution">
</Function> </Function>
<Function name="MaximizeWindow" retType="void" paramCount="0" desc="Set window state: maximized, if resizable (only PLATFORM_DESKTOP)">
<Function name="MaximizeWindow" retType="void" paramCount="0" desc="Set window state: maximized, if resizable">
</Function> </Function>
<Function name="MinimizeWindow" retType="void" paramCount="0" desc="Set window state: minimized, if resizable (only PLATFORM_DESKTOP)">
<Function name="MinimizeWindow" retType="void" paramCount="0" desc="Set window state: minimized, if resizable">
</Function> </Function>
<Function name="RestoreWindow" retType="void" paramCount="0" desc="Set window state: not minimized/maximized (only PLATFORM_DESKTOP)">
<Function name="RestoreWindow" retType="void" paramCount="0" desc="Set window state: not minimized/maximized">
</Function> </Function>
<Function name="SetWindowIcon" retType="void" paramCount="1" desc="Set icon for window (single image, RGBA 32bit, only PLATFORM_DESKTOP)">
<Function name="SetWindowIcon" retType="void" paramCount="1" desc="Set icon for window (single image, RGBA 32bit)">
<Param type="Image" name="image" desc="" /> <Param type="Image" name="image" desc="" />
</Function> </Function>
<Function name="SetWindowIcons" retType="void" paramCount="2" desc="Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)">
<Function name="SetWindowIcons" retType="void" paramCount="2" desc="Set icon for window (multiple images, RGBA 32bit)">
<Param type="Image *" name="images" desc="" /> <Param type="Image *" name="images" desc="" />
<Param type="int" name="count" desc="" /> <Param type="int" name="count" desc="" />
</Function> </Function>
<Function name="SetWindowTitle" retType="void" paramCount="1" desc="Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)">
<Function name="SetWindowTitle" retType="void" paramCount="1" desc="Set title for window">
<Param type="const char *" name="title" desc="" /> <Param type="const char *" name="title" desc="" />
</Function> </Function>
<Function name="SetWindowPosition" retType="void" paramCount="2" desc="Set window position on screen (only PLATFORM_DESKTOP)">
<Function name="SetWindowPosition" retType="void" paramCount="2" desc="Set window position on screen">
<Param type="int" name="x" desc="" /> <Param type="int" name="x" desc="" />
<Param type="int" name="y" desc="" /> <Param type="int" name="y" desc="" />
</Function> </Function>
@ -746,10 +746,10 @@
<Param type="int" name="width" desc="" /> <Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" /> <Param type="int" name="height" desc="" />
</Function> </Function>
<Function name="SetWindowOpacity" retType="void" paramCount="1" desc="Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)">
<Function name="SetWindowOpacity" retType="void" paramCount="1" desc="Set window opacity [0.0f..1.0f]">
<Param type="float" name="opacity" desc="" /> <Param type="float" name="opacity" desc="" />
</Function> </Function>
<Function name="SetWindowFocused" retType="void" paramCount="0" desc="Set window focused (only PLATFORM_DESKTOP)">
<Function name="SetWindowFocused" retType="void" paramCount="0" desc="Set window focused">
</Function> </Function>
<Function name="GetWindowHandle" retType="void *" paramCount="0" desc="Get native window handle"> <Function name="GetWindowHandle" retType="void *" paramCount="0" desc="Get native window handle">
</Function> </Function>
@ -1163,7 +1163,7 @@
<Function name="IsKeyPressed" retType="bool" paramCount="1" desc="Check if a key has been pressed once"> <Function name="IsKeyPressed" retType="bool" paramCount="1" desc="Check if a key has been pressed once">
<Param type="int" name="key" desc="" /> <Param type="int" name="key" desc="" />
</Function> </Function>
<Function name="IsKeyPressedRepeat" retType="bool" paramCount="1" desc="Check if a key has been pressed again (Only PLATFORM_DESKTOP)">
<Function name="IsKeyPressedRepeat" retType="bool" paramCount="1" desc="Check if a key has been pressed again">
<Param type="int" name="key" desc="" /> <Param type="int" name="key" desc="" />
</Function> </Function>
<Function name="IsKeyDown" retType="bool" paramCount="1" desc="Check if a key is being pressed"> <Function name="IsKeyDown" retType="bool" paramCount="1" desc="Check if a key is being pressed">

正在加载...
取消
保存