At 11:31 PM -0800 4/4/99, Stephen Best wrote:
>Any chance of posting the prototype and trap id of SysLCDContrast() so I can
>use this now?
I don't see why not... (though I probably will right after I send this.)
You can probably just paste this stuff in your own .c file, or create a .h.
The #define is necessary because presumably you don't have the updated
SysTraps.h yet, make sure you rip all this out when you update to the
latest SDK.
#define sysTrapSysLCDContrast 843
#ifdef __cplusplus
extern "C" {
#endif
Byte SysLCDContrast(Boolean set, Byte newContrastLevel)
SYS_TRAP(sysTrapSysLCDContrast);
#ifdef __cplusplus
}
#endif
--Bob