This is an old revision of the document!
This is a list of all the functions that can be used to interface with ProBoard.
Several types have been defined in the file PB_SDK.H
bool : a boolean value that can have the values TRUE or FALSE byte : an unsigned character (8 bits) word : an unsigned short integer (16 bits) dword : an unsigned long integer (32 bits) KEY : used for key scan codes (for sysopkey handlers and the ScanKey() function).
Adds 'min' minutes to the user's time left. If 'min' is negative, the number of minutes will be subtracted from the time left.
Examples: AddTime( 10 ); /* Adds 10 minutes */
AddTime( -5 ); /* Subtracts 5 minutes */
Returns the time left in minutes for the current user.