|
|
Sends to a window to query whether the window needs to open IME window. The system will send this message when the window gain the input focus to determine whether the window needs to open IME window. The application should handle this message and return TRUE when the window need IME window. Default window procedure returns FALSE.
|
|
|
Indicates an event of registered file descriptor occurred. You can use RegisterListenFD to register a file desciptor to MiniGUI-Lite for listening. When there is a read/write/except event on the fd, MiniGUI will post a MSG_FDEVENT message with wParam being equal to MAKELONG (fd, type), and the lParam being set to be the context to the target window.
MSG_FDEVENT int fd = LOWORD(wParam); int type = HIWORD(wParam); void* context = (void*)lParam;
|
|
|
Indicates the system enters idle loop. This message is sent to the all main windows when the system enters idle loop. |
|
|
Indicates a notification from the server of MiniGUI-Lite. This message will be broadcasted to all of the main windows in a client process when the client receives a MSG_SRVNOTIFY message from the server. The server, i.e. 'mginit' defines the meaning of two parameters of this message.
|
|
|
Indicates a timer has expired. This message is sent to the window when a timer expired.
MSG_TIMER int timer_id = (int)wParam;
|
1.4.2