17 #define KEY_TRIANGLE 12
29 int getKeyOn(int num
);
30 int getKeyOff(int num
);
31 int getKeyPressed(int num
);
33 /** Sets the repetition delay for the specified button
34 * @param button id (KEY_XXX values)
35 * @param btndelay the delay in miliseconds per repeat (clamped by framerate!) */
36 void setButtonDelay(int button
, int btndelay
);
38 /** Gets the repetition delay for the specified button */
39 int getButtonDelay(int button
);
42 /** Store's the button delay into specified integer array (has to have 16 items) */
43 void padStoreSettings(int* buffer
);
45 /** Restore's the button delay from specified integer array (has to have 16 items) */
46 void padRestoreSettings(int* buffer
);