tune ZORDERNODE

This commit is contained in:
Vincent Wei
2020-01-20 16:51:00 +08:00
parent 2120020801
commit 5b169494be
+5 -5
View File
@@ -71,11 +71,13 @@ typedef MASKRECT* PMASKRECT;
typedef struct _ZORDERNODE {
DWORD flags; /* znode flags */
char *caption; /* caption */
RECT rc; /* rect on the screen */
int cli; /* which client? */
HWND hwnd; /* which window of the client? */
HWND main_win; /* handle to the main window */
RECT rc; /* rect on the screen */
int cli; /* which client? */
unsigned int age; /* change age */
#ifdef _MGSCHEMA_COMPOSITING
HDC mem_dc; /* the memory DC for this znode */
DWORD ct_arg; /* the argument for compositing */
@@ -83,12 +85,10 @@ typedef struct _ZORDERNODE {
#endif
RECT dirty_rc; /* dirty rect */
unsigned int age; /* change age */
int idx_mask_rect; /* The first position of mask rect. */
int next;
int prev;
int idx_mask_rect; /* The first position of mask rect. */
} ZORDERNODE;
typedef ZORDERNODE* PZORDERNODE;