Changeset 3152 for trunk/include/win/status.h
- Timestamp:
- Mar 18, 2000, 5:10:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/status.h
r4 r3152 1 /* $Id: status.h,v 1. 1 1999-05-24 20:19:19 ktkExp $ */1 /* $Id: status.h,v 1.2 2000-03-18 16:10:55 cbratschi Exp $ */ 2 2 3 3 /* … … 12 12 typedef struct 13 13 { 14 INT 15 INT 16 RECT 17 LPWSTR 18 HICON 14 INT x; 15 INT style; 16 RECT bound; 17 LPWSTR text; 18 HICON hIcon; 19 19 } STATUSWINDOWPART; 20 20 21 21 typedef struct 22 22 { 23 UINT16 numParts; 24 UINT16 textHeight; 23 COMCTL32_HEADER header; 24 25 UINT numParts; 26 UINT textHeight; 25 27 UINT height; 26 28 BOOL simple; … … 28 30 HFONT hFont; 29 31 HFONT hDefaultFont; 30 COLORREF clrBk; /* background color */ 31 BOOL bUnicode; /* unicode flag */ 32 STATUSWINDOWPART part0; /* simple window */ 33 STATUSWINDOWPART *parts; 32 COLORREF clrBk; /* background color */ 33 STATUSWINDOWPART part0; /* simple window */ 34 STATUSWINDOWPART *parts; 34 35 } STATUSWINDOWINFO; 35 36
Note:
See TracChangeset
for help on using the changeset viewer.