1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-28 03:52:23 -05:00
Simba/Units/MMLAddon/LPInc/Wrappers/lp_keyboard.inc

30 lines
681 B
PHP
Raw Normal View History

2011-08-03 14:29:48 -04:00
procedure Lape_KeyDown(const Params: PParamArray);
begin
ps_KeyDown(PWord(Params^[0])^);
end;
procedure Lape_KeyUp(const Params: PParamArray);
begin
ps_KeyUp(PWord(Params^[0])^);
end;
procedure Lape_SendKeys(const Params: PParamArray);
begin
ps_SendKeys(Pstring(Params^[0])^);
end;
procedure Lape_PressKey(const Params: PParamArray);
begin
ps_PressKey(PWord(Params^[0])^);
end;
procedure Lape_isKeyDown(const Params: PParamArray; const Result: Pointer);
begin
Pboolean(Result)^ := ps_isKeyDown(PWord(Params^[0])^);
end;
procedure Lape_GetKeyCode(const Params: PParamArray; const Result: Pointer);
begin
Pinteger(Result)^ := ps_GetKeyCode(Pchar(Params^[0])^);
end;