Update raylib_api.* by CI
This commit is contained in:
parent
2072b4fa04
commit
c6a58d9744
4 changed files with 72 additions and 72 deletions
|
@ -27,7 +27,7 @@
|
|||
{
|
||||
"name": "RAYLIB_VERSION",
|
||||
"type": "STRING",
|
||||
"value": "5.5-dev",
|
||||
"value": "5.5",
|
||||
"description": ""
|
||||
},
|
||||
{
|
||||
|
@ -3177,22 +3177,22 @@
|
|||
},
|
||||
{
|
||||
"name": "IsWindowHidden",
|
||||
"description": "Check if window is currently hidden (only PLATFORM_DESKTOP)",
|
||||
"description": "Check if window is currently hidden",
|
||||
"returnType": "bool"
|
||||
},
|
||||
{
|
||||
"name": "IsWindowMinimized",
|
||||
"description": "Check if window is currently minimized (only PLATFORM_DESKTOP)",
|
||||
"description": "Check if window is currently minimized",
|
||||
"returnType": "bool"
|
||||
},
|
||||
{
|
||||
"name": "IsWindowMaximized",
|
||||
"description": "Check if window is currently maximized (only PLATFORM_DESKTOP)",
|
||||
"description": "Check if window is currently maximized",
|
||||
"returnType": "bool"
|
||||
},
|
||||
{
|
||||
"name": "IsWindowFocused",
|
||||
"description": "Check if window is currently focused (only PLATFORM_DESKTOP)",
|
||||
"description": "Check if window is currently focused",
|
||||
"returnType": "bool"
|
||||
},
|
||||
{
|
||||
|
@ -3213,7 +3213,7 @@
|
|||
},
|
||||
{
|
||||
"name": "SetWindowState",
|
||||
"description": "Set window configuration state using flags (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window configuration state using flags",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3235,32 +3235,32 @@
|
|||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"name": "MaximizeWindow",
|
||||
"description": "Set window state: maximized, if resizable (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window state: maximized, if resizable",
|
||||
"returnType": "void"
|
||||
},
|
||||
{
|
||||
"name": "MinimizeWindow",
|
||||
"description": "Set window state: minimized, if resizable (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window state: minimized, if resizable",
|
||||
"returnType": "void"
|
||||
},
|
||||
{
|
||||
"name": "RestoreWindow",
|
||||
"description": "Set window state: not minimized/maximized (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window state: not minimized/maximized",
|
||||
"returnType": "void"
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3271,7 +3271,7 @@
|
|||
},
|
||||
{
|
||||
"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",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3286,7 +3286,7 @@
|
|||
},
|
||||
{
|
||||
"name": "SetWindowTitle",
|
||||
"description": "Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)",
|
||||
"description": "Set title for window",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3297,7 +3297,7 @@
|
|||
},
|
||||
{
|
||||
"name": "SetWindowPosition",
|
||||
"description": "Set window position on screen (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window position on screen",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3368,7 +3368,7 @@
|
|||
},
|
||||
{
|
||||
"name": "SetWindowOpacity",
|
||||
"description": "Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window opacity [0.0f..1.0f]",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
@ -3379,7 +3379,7 @@
|
|||
},
|
||||
{
|
||||
"name": "SetWindowFocused",
|
||||
"description": "Set window focused (only PLATFORM_DESKTOP)",
|
||||
"description": "Set window focused",
|
||||
"returnType": "void"
|
||||
},
|
||||
{
|
||||
|
@ -4824,7 +4824,7 @@
|
|||
},
|
||||
{
|
||||
"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",
|
||||
"params": [
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ return {
|
|||
{
|
||||
name = "RAYLIB_VERSION",
|
||||
type = "STRING",
|
||||
value = "5.5-dev",
|
||||
value = "5.5",
|
||||
description = ""
|
||||
},
|
||||
{
|
||||
|
@ -3129,22 +3129,22 @@ return {
|
|||
},
|
||||
{
|
||||
name = "IsWindowHidden",
|
||||
description = "Check if window is currently hidden (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently hidden",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowMinimized",
|
||||
description = "Check if window is currently minimized (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently minimized",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowMaximized",
|
||||
description = "Check if window is currently maximized (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently maximized",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowFocused",
|
||||
description = "Check if window is currently focused (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently focused",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
|
@ -3162,7 +3162,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowState",
|
||||
description = "Set window configuration state using flags (only PLATFORM_DESKTOP)",
|
||||
description = "Set window configuration state using flags",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "unsigned int", name = "flags"}
|
||||
|
@ -3178,32 +3178,32 @@ return {
|
|||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
name = "MaximizeWindow",
|
||||
description = "Set window state: maximized, if resizable (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: maximized, if resizable",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "MinimizeWindow",
|
||||
description = "Set window state: minimized, if resizable (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: minimized, if resizable",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "RestoreWindow",
|
||||
description = "Set window state: not minimized/maximized (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: not minimized/maximized",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
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",
|
||||
params = {
|
||||
{type = "Image", name = "image"}
|
||||
|
@ -3211,7 +3211,7 @@ return {
|
|||
},
|
||||
{
|
||||
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",
|
||||
params = {
|
||||
{type = "Image *", name = "images"},
|
||||
|
@ -3220,7 +3220,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowTitle",
|
||||
description = "Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)",
|
||||
description = "Set title for window",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "const char *", name = "title"}
|
||||
|
@ -3228,7 +3228,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowPosition",
|
||||
description = "Set window position on screen (only PLATFORM_DESKTOP)",
|
||||
description = "Set window position on screen",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "int", name = "x"},
|
||||
|
@ -3272,7 +3272,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowOpacity",
|
||||
description = "Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)",
|
||||
description = "Set window opacity [0.0f..1.0f]",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "float", name = "opacity"}
|
||||
|
@ -3280,7 +3280,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowFocused",
|
||||
description = "Set window focused (only PLATFORM_DESKTOP)",
|
||||
description = "Set window focused",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
|
@ -4281,7 +4281,7 @@ return {
|
|||
},
|
||||
{
|
||||
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",
|
||||
params = {
|
||||
{type = "int", name = "key"}
|
||||
|
|
|
@ -24,7 +24,7 @@ Define 004: RAYLIB_VERSION_PATCH
|
|||
Define 005: RAYLIB_VERSION
|
||||
Name: RAYLIB_VERSION
|
||||
Type: STRING
|
||||
Value: "5.5-dev"
|
||||
Value: "5.5"
|
||||
Description:
|
||||
Define 006: __declspec(x)
|
||||
Name: __declspec(x)
|
||||
|
@ -1020,22 +1020,22 @@ Function 005: IsWindowFullscreen() (0 input parameters)
|
|||
Function 006: IsWindowHidden() (0 input parameters)
|
||||
Name: IsWindowHidden
|
||||
Return type: bool
|
||||
Description: Check if window is currently hidden (only PLATFORM_DESKTOP)
|
||||
Description: Check if window is currently hidden
|
||||
No input parameters
|
||||
Function 007: IsWindowMinimized() (0 input parameters)
|
||||
Name: IsWindowMinimized
|
||||
Return type: bool
|
||||
Description: Check if window is currently minimized (only PLATFORM_DESKTOP)
|
||||
Description: Check if window is currently minimized
|
||||
No input parameters
|
||||
Function 008: IsWindowMaximized() (0 input parameters)
|
||||
Name: IsWindowMaximized
|
||||
Return type: bool
|
||||
Description: Check if window is currently maximized (only PLATFORM_DESKTOP)
|
||||
Description: Check if window is currently maximized
|
||||
No input parameters
|
||||
Function 009: IsWindowFocused() (0 input parameters)
|
||||
Name: IsWindowFocused
|
||||
Return type: bool
|
||||
Description: Check if window is currently focused (only PLATFORM_DESKTOP)
|
||||
Description: Check if window is currently focused
|
||||
No input parameters
|
||||
Function 010: IsWindowResized() (0 input parameters)
|
||||
Name: IsWindowResized
|
||||
|
@ -1050,7 +1050,7 @@ Function 011: IsWindowState() (1 input parameters)
|
|||
Function 012: SetWindowState() (1 input parameters)
|
||||
Name: SetWindowState
|
||||
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)
|
||||
Function 013: ClearWindowState() (1 input parameters)
|
||||
Name: ClearWindowState
|
||||
|
@ -1060,48 +1060,48 @@ Function 013: ClearWindowState() (1 input parameters)
|
|||
Function 014: ToggleFullscreen() (0 input parameters)
|
||||
Name: ToggleFullscreen
|
||||
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
|
||||
Function 015: ToggleBorderlessWindowed() (0 input parameters)
|
||||
Name: ToggleBorderlessWindowed
|
||||
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
|
||||
Function 016: MaximizeWindow() (0 input parameters)
|
||||
Name: MaximizeWindow
|
||||
Return type: void
|
||||
Description: Set window state: maximized, if resizable (only PLATFORM_DESKTOP)
|
||||
Description: Set window state: maximized, if resizable
|
||||
No input parameters
|
||||
Function 017: MinimizeWindow() (0 input parameters)
|
||||
Name: MinimizeWindow
|
||||
Return type: void
|
||||
Description: Set window state: minimized, if resizable (only PLATFORM_DESKTOP)
|
||||
Description: Set window state: minimized, if resizable
|
||||
No input parameters
|
||||
Function 018: RestoreWindow() (0 input parameters)
|
||||
Name: RestoreWindow
|
||||
Return type: void
|
||||
Description: Set window state: not minimized/maximized (only PLATFORM_DESKTOP)
|
||||
Description: Set window state: not minimized/maximized
|
||||
No input parameters
|
||||
Function 019: SetWindowIcon() (1 input parameters)
|
||||
Name: SetWindowIcon
|
||||
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)
|
||||
Function 020: SetWindowIcons() (2 input parameters)
|
||||
Name: SetWindowIcons
|
||||
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[2]: count (type: int)
|
||||
Function 021: SetWindowTitle() (1 input parameters)
|
||||
Name: SetWindowTitle
|
||||
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 *)
|
||||
Function 022: SetWindowPosition() (2 input parameters)
|
||||
Name: SetWindowPosition
|
||||
Return type: void
|
||||
Description: Set window position on screen (only PLATFORM_DESKTOP)
|
||||
Description: Set window position on screen
|
||||
Param[1]: x (type: int)
|
||||
Param[2]: y (type: int)
|
||||
Function 023: SetWindowMonitor() (1 input parameters)
|
||||
|
@ -1130,12 +1130,12 @@ Function 026: SetWindowSize() (2 input parameters)
|
|||
Function 027: SetWindowOpacity() (1 input parameters)
|
||||
Name: SetWindowOpacity
|
||||
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)
|
||||
Function 028: SetWindowFocused() (0 input parameters)
|
||||
Name: SetWindowFocused
|
||||
Return type: void
|
||||
Description: Set window focused (only PLATFORM_DESKTOP)
|
||||
Description: Set window focused
|
||||
No input parameters
|
||||
Function 029: GetWindowHandle() (0 input parameters)
|
||||
Name: GetWindowHandle
|
||||
|
@ -1854,7 +1854,7 @@ Function 160: IsKeyPressed() (1 input parameters)
|
|||
Function 161: IsKeyPressedRepeat() (1 input parameters)
|
||||
Name: IsKeyPressedRepeat
|
||||
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)
|
||||
Function 162: IsKeyDown() (1 input parameters)
|
||||
Name: IsKeyDown
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<Define name="RAYLIB_VERSION_MAJOR" 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" 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="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="" />
|
||||
|
@ -688,46 +688,46 @@
|
|||
</Function>
|
||||
<Function name="IsWindowFullscreen" retType="bool" paramCount="0" desc="Check if window is currently fullscreen">
|
||||
</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 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 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 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 name="IsWindowResized" retType="bool" paramCount="0" desc="Check if window has been resized last frame">
|
||||
</Function>
|
||||
<Function name="IsWindowState" retType="bool" paramCount="1" desc="Check if one specific window flag is enabled">
|
||||
<Param type="unsigned int" name="flag" desc="" />
|
||||
</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="" />
|
||||
</Function>
|
||||
<Function name="ClearWindowState" retType="void" paramCount="1" desc="Clear window configuration state flags">
|
||||
<Param type="unsigned int" name="flags" desc="" />
|
||||
</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 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 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 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 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 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="" />
|
||||
</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="int" name="count" desc="" />
|
||||
</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="" />
|
||||
</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="y" desc="" />
|
||||
</Function>
|
||||
|
@ -746,10 +746,10 @@
|
|||
<Param type="int" name="width" desc="" />
|
||||
<Param type="int" name="height" desc="" />
|
||||
</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="" />
|
||||
</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 name="GetWindowHandle" retType="void *" paramCount="0" desc="Get native window handle">
|
||||
</Function>
|
||||
|
@ -1163,7 +1163,7 @@
|
|||
<Function name="IsKeyPressed" retType="bool" paramCount="1" desc="Check if a key has been pressed once">
|
||||
<Param type="int" name="key" desc="" />
|
||||
</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="" />
|
||||
</Function>
|
||||
<Function name="IsKeyDown" retType="bool" paramCount="1" desc="Check if a key is being pressed">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue