31 lines
504 B
C
31 lines
504 B
C
#ifndef _PH_COLORBOX_H
|
|
#define _PH_COLORBOX_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PH_COLORBOX_CLASSNAME L"PhColorBox"
|
|
|
|
PHLIBAPI
|
|
BOOLEAN
|
|
NTAPI
|
|
PhColorBoxInitialization(
|
|
VOID
|
|
);
|
|
|
|
#define CBCM_SETCOLOR (WM_APP + 1501)
|
|
#define CBCM_GETCOLOR (WM_APP + 1502)
|
|
|
|
#define ColorBox_SetColor(hWnd, Color) \
|
|
SendMessage((hWnd), CBCM_SETCOLOR, (WPARAM)(Color), 0)
|
|
|
|
#define ColorBox_GetColor(hWnd) \
|
|
((COLORREF)SendMessage((hWnd), CBCM_GETCOLOR, 0, 0))
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|