GetFKeyPtr
From WikiPrizm
Jump to navigationJump to search
Contents
Synopsis
Header: display_syscalls.h
Syscall index: 0x12F3
Function signature: void GetFKeyPtr(int id, void* result)
This function tells you the position of a requested FKey icon.
Returns
The function sets the given variable as a pointer to the start of the requested bitmap.
Comments
Use FKey_Display to display FKey bitmaps.
Example
This code displays "TEST" above F1 button:
int iresult; GetFKeyPtr(0x0003, &iresult); FKey_Display(0, iresult);