IVIEW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // iviewers.h : main header file for the iviewers application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #ifndef __IVIEW_H__
  16. #define __IVIEW_H__
  17. #include "resource.h"       // main symbols
  18. #ifndef _RGB_H_
  19. #define _RGB_H_
  20.    #define RGBBLACK     RGB(0,0,0)
  21.    #define RGBRED       RGB(128,0,0)
  22.    #define RGBGREEN     RGB(0,128,0)
  23.    #define RGBBLUE      RGB(0,0,128)
  24.    #define RGBBROWN     RGB(128,128,0)
  25.    #define RGBMAGENTA   RGB(128,0,128)
  26.    #define RGBCYAN      RGB(0,128,128)
  27.    #define RGBLTGRAY    RGB(192,192,192)
  28.    #define RGBGRAY      RGB(128,128,128)
  29.    #define RGBLTRED     RGB(255,0,0)
  30.    #define RGBLTGREEN   RGB(0,255,0)
  31.    #define RGBLTBLUE    RGB(0,0,255)
  32.    #define RGBYELLOW    RGB(255,255,0)
  33.    #define RGBLTMAGENTA RGB(255,0,255)
  34.    #define RGBLTCYAN    RGB(0,255,255)
  35.    #define RGBWHITE     RGB(255,255,255)
  36. #endif
  37. /////////////////////////////////////////////////////////////////////////////
  38. #endif // __IVIEW_H__