mirror of
https://github.com/dpethes/rerogue.git
synced 2025-06-07 18:58:32 +02:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
//from "sdl_gesture.h"
|
|
|
|
type
|
|
TSDL_GestureID = SInt64;
|
|
|
|
{* Function prototypes *}
|
|
|
|
{**
|
|
* Begin Recording a gesture on the specified touch, or all touches (-1)
|
|
*
|
|
*
|
|
*}
|
|
function SDL_RecordGesture(touchId: TSDL_TouchID): SInt32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RecordGesture' {$ENDIF} {$ENDIF};
|
|
|
|
{**
|
|
* Save all currently loaded Dollar Gesture templates
|
|
*
|
|
*
|
|
*}
|
|
function SDL_SaveAllDollarTemplates(src: PSDL_RWops): SInt32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SaveAllDollarTemplates' {$ENDIF} {$ENDIF};
|
|
|
|
{**
|
|
* Save a currently loaded Dollar Gesture template
|
|
*
|
|
*
|
|
*}
|
|
function SDL_SaveDollarTemplate(gestureId: TSDL_GestureID; src: PSDL_RWops): SInt32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SaveDollarTemplate' {$ENDIF} {$ENDIF};
|
|
|
|
|
|
{**
|
|
* Load Dollar Gesture templates from a file
|
|
*
|
|
*
|
|
*}
|
|
function SDL_LoadDollarTemplates(touchId: TSDL_TouchID; src: PSDL_RWops): SInt32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadDollarTemplates' {$ENDIF} {$ENDIF};
|