Скачиваний:
10
Добавлен:
01.05.2014
Размер:
612 б
Скачать
//Definitions of constants

#ifndef Constants_h
#define Constants_h

   // Element type definitions
   // Each type value must be unique
   const WORD CIRCLE = 101U;
   const WORD ELLIPSE = 102U;
   const WORD TEXT = 103U;
   const WORD ELLIPSETEXT = 104U;

   ///////////////////////////////////

   // Color values for drawing
   const COLORREF BLACK = RGB(0,0,0);
   const COLORREF RED = RGB(255,0,0);
   const COLORREF SELECT_COLOR = RGB(255,0,180);
   ///////////////////////////////////

   // Program version number for use in serialization
   const UINT VERSION_NUMBER = 1;
#endif
Соседние файлы в папке lab22