You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
489 B
25 lines
489 B
#define CS_HREDRAW 0x0001 |
|
#define CS_VREDRAW 0x0002 |
|
|
|
#define IDC_ARROW (LPCSTR)0x1 // Dummy value |
|
|
|
#define CSIDL_STARTMENU 0x000b |
|
|
|
#define SW_HIDE 0 |
|
#define SW_SHOWNORMAL 1 |
|
|
|
#define BLACK_BRUSH 4 |
|
|
|
#define LR_DEFAULTCOLOR 0x0000 |
|
|
|
#define IMAGE_ICON 1 |
|
|
|
#define SM_CXSCREEN 0 |
|
#define SM_CYSCREEN 1 |
|
|
|
#define GW_HWNDNEXT 2 |
|
|
|
#define E_FAIL DVL_E_FAIL |
|
#define S_OK DVL_S_OK |
|
|
|
#define MAKE_HRESULT(sev, fac, code) ((HRESULT)(((uint32_t)(sev) << 31) | ((uint32_t)(fac) << 16) | ((uint32_t)(code))))
|
|
|