mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-09-27 22:48:47 +08:00
20 lines
853 B
Plaintext
20 lines
853 B
Plaintext
New \- MiniGUI-Lite version specified functions.
|
|
|
|
#include <minigui/minigui.h>
|
|
|
|
BOOL GUIAPI SetDesktopRect (int lx, int ty, int rx, int by);
|
|
void GUIAPI GetDesktopRect (int* lx, int* ty, int* rx, int* by);
|
|
BOOL GUIAPI ServerStartup (void);
|
|
BOOL GUIAPI SetClientScreen (int lx, int ty, int rx, int by);
|
|
BOOL GUIAPI OnlyMeCanDraw (void);
|
|
BOOL GUIAPI ClientCanDrawNowEx (BOOL bRepaint);
|
|
BOOL GUIAPI SetTopMostClient (int cli);
|
|
int GUIAPI GetClientByPID (int pid);
|
|
int cli_request (PREQUEST request, void* result, int len_rslt);
|
|
BOOL GUIAPI RegisterRequestHandler (int req_id, REQ_HANDLER your_handler);
|
|
REQ_HANDLER GUIAPI GetRequestHandler (int req_id);
|
|
int get_sock_fd2srv (void);
|
|
int sock_write (int fd, const void* buff, int count);
|
|
int sock_read (int fd, void* buff, int count);
|
|
BOOL GUIAPI Send2TopMostClient (int iMsg, WPARAM wParam, LPARAM lParam);
|