lowlevel
Index
APTR AddKBInt(
APTR intRoutine,
APTR intData );
This function is unimplemented.
APTR AddTimerInt(
APTR intRoutine,
APTR intData );
This function is unimplemented.
APTR AddVBlankInt(
APTR intRoutine,
APTR intData );
Add a callback function that should be executed every vertical blank.
If your program can exit without rebooting the machine, RemVBlankInt()
has to be called prior to exiting.
Only one interrupt routine may be added; always check the return
value of this function in case some other program already has used this
function.
intRoutine -- the callback function to invoke each vertical blank
intData -- data passed to the callback function
A handle used to manipulate the interrupt or NULL if the call failed.
ULONG ElapsedTime(
struct EClockVal * context );
This function is unimplemented.
This function is unimplemented.
ULONG GetLanguageSelection();
VOID QueryKeys(
struct KeyQuery * queryArray,
UBYTE arraySize );
This function is unimplemented.
ULONG ReadJoyPort(
ULONG port );
This function is unimplemented.
VOID RemKBInt(
APTR intHandle );
This function is unimplemented.
VOID RemTimerInt(
APTR intHandle );
This function is unimplemented.
VOID RemVBlankInt(
APTR intHandle );
Remove a vertical blank interrupt routine previously added by a call to
AddVBlankInt().
intHandle -- return value from AddVBlankInt(); may be NULL in which case
this function is a no-op.
BOOL SetJoyPortAttrsA(
ULONG portNumber,
struct TagItem * tagList );
BOOL SetJoyPortAttrs(
ULONG portNumber,
TAG tag, ... );
VOID StartTimerInt(
APTR intHandle,
ULONG timeInterval,
BOOL continuous );
This function is unimplemented.
VOID StopTimerInt(
APTR intHandle );
This function is unimplemented.
ULONG SystemControlA(
struct TagItem * tags );
ULONG SystemControl(
TAG tag, ... );
This function is unimplemented.
|
|