diff options
| author | Remi Collet <remi@remirepo.net> | 2019-09-09 09:57:30 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@remirepo.net> | 2019-09-09 09:57:30 +0200 | 
| commit | 0c2abb311d0ed43690427d41bcaee13a99181bcb (patch) | |
| tree | ef160667214e43ec9e59635a24dda74cc72e9b79 /REFLECTION | |
| parent | 5186ce118c8cb8ae8185bf3d2ec30ee29ba0bc82 (diff) | |
v2.3.0
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 75 | 
1 files changed, 72 insertions, 3 deletions
| @@ -1,6 +1,6 @@ -Extension [ <persistent> extension #71 SDL version 2.2.2 ] { +Extension [ <persistent> extension #71 SDL version 2.3.0 ] { -  - Constants [735] { +  - Constants [738] {      Constant [ int SDL_BLENDMODE_NONE ] { 0 }      Constant [ int SDL_BLENDMODE_BLEND ] { 1 }      Constant [ int SDL_BLENDMODE_ADD ] { 2 } @@ -22,6 +22,9 @@ Extension [ <persistent> extension #71 SDL version 2.2.2 ] {      Constant [ int SDL_MOUSEBUTTONDOWN ] { 1025 }      Constant [ int SDL_MOUSEBUTTONUP ] { 1026 }      Constant [ int SDL_MOUSEWHEEL ] { 1027 } +    Constant [ int SDL_JOYAXISMOTION ] { 1536 } +    Constant [ int SDL_JOYBUTTONDOWN ] { 1539 } +    Constant [ int SDL_JOYBUTTONUP ] { 1540 }      Constant [ int SDL_WINDOWEVENT_SHOWN ] { 1 }      Constant [ int SDL_WINDOWEVENT_HIDDEN ] { 2 }      Constant [ int SDL_WINDOWEVENT_EXPOSED ] { 3 } @@ -2233,6 +2236,54 @@ Extension [ <persistent> extension #71 SDL version 2.2.2 ] {          Parameter #0 [ <required> SDL_cond $condition ]        }      } +    Function [ <internal:SDL> function SDL_NumJoysticks ] { + +      - Parameters [0] { +      } +    } +    Function [ <internal:SDL> function SDL_JoystickOpen ] { + +      - Parameters [1] { +        Parameter #0 [ <required> int $index ] +      } +    } +    Function [ <internal:SDL> function SDL_JoystickClose ] { + +      - Parameters [1] { +        Parameter #0 [ <required> SDL_Joystick $joystick ] +      } +    } +    Function [ <internal:SDL> function SDL_JoystickNumButtons ] { + +      - Parameters [1] { +        Parameter #0 [ <required> SDL_Joystick $joystick ] +      } +    } +    Function [ <internal:SDL> function SDL_JoystickName ] { + +      - Parameters [1] { +        Parameter #0 [ <required> SDL_Joystick $joystick ] +      } +    } +    Function [ <internal:SDL> function SDL_JoystickGetAxis ] { + +      - Parameters [2] { +        Parameter #0 [ <required> SDL_Joystick $joystick ] +        Parameter #1 [ <required> int $axis ] +      } +    } +    Function [ <internal:SDL> function SDL_JoystickNameForIndex ] { + +      - Parameters [1] { +        Parameter #0 [ <required> int $index ] +      } +    } +    Function [ <internal:SDL> function SDL_IsGameController ] { + +      - Parameters [1] { +        Parameter #0 [ <required> int $index ] +      } +    }      Function [ <internal:SDL> function SDL_AllocRW ] {        - Parameters [0] { @@ -2409,7 +2460,7 @@ Extension [ <persistent> extension #71 SDL version 2.2.2 ] {      }    } -  - Classes [20] { +  - Classes [21] {      Class [ <internal:SDL> class SDL_Event ] {        - Constants [0] { @@ -4276,6 +4327,24 @@ Extension [ <persistent> extension #71 SDL version 2.2.2 ] {          }        }      } + +    Class [ <internal:SDL> class SDL_Joystick ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [0] { +      } +    }    }  } | 
