20 lines
546 B
C
20 lines
546 B
C
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently,
|
|
// but are changed infrequently
|
|
#ifndef _XXXXXXXX
|
|
#define _XXXXXXXX
|
|
|
|
#include <afxctl.h> // MFC support for OLE Custom Controls
|
|
#include "thumb.h" // Publics for the Thumb Control
|
|
|
|
// Colors
|
|
#define rgbWhite RGB(255,255,255)
|
|
#define rgbBlack RGB(0,0,0)
|
|
#define rgbLtGray RGB(0xC0, 0xC0, 0xC0)
|
|
#define rgbDkGray RGB(0x80, 0x80, 0x80)
|
|
|
|
// Help Support...
|
|
#define WM_CONTEXTMENU 0x007B
|
|
|
|
#endif
|