|
|
|
|
|
|
Const SM_CMOUSEBUTTONS = 43 ' Number of mouse buttons Const SM_MOUSEWHEELPRESENT = 75 ' True if mouse wheel present ' (Win NT 4 or Win 98 only) Const SM_SWAPBUTTON = 23 ' True if mouse buttons swapped Const SM_CXBORDER = 5 ' Width and height of a window border Const SM_CYBORDER = 6 Const SM_CXSCREEN = 0 ' Width and height of screen Const SM_CYSCREEN = 1 Const SM_CXFULLSCREEN = 16 ' Width and height of client area for a Const SM_CYFULLSCREEN = 17 ' full-screen window Const SM_CXHTUMB = 10 ' Width of the thumb box in a horizontal ' scroll bar. Const SM_CXICONSPACING = 38 ' Dimensions of a grid cell for items in Const SM_CYICONSPACING = 39 ' large icon view. Const SM_CYCAPTION = 4 ' Height of a normal caption area.
|
typedef struct tagICONMETRICS { UINT cbSize; int iHorzSpacing; int iVertSpacing; int iTitleWrap; LOGFONT lfFont; } ICONMETRICS, FAR **LPICONMETRICS;
|
|
BOOL WINAPI SetSysColors( int cElements, // number of elements to change CONST INT *lpaElements, // address of array of elements CONST COLORREF *lpaRgbValues // address of array of RGB values );
|
|
|