Rgbcolor.h
上传用户:cbxyz2008
上传日期:2007-01-02
资源大小:45k
文件大小:2k
源码类别:

Static控件

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Copyright (C) 1998 by Michel Wassink
  3. // All rights reserved
  4. //
  5. // This is free software.
  6. // You may redistribute it by any means providing it is not sold for profit
  7. // without the author written consent.
  8. //
  9. // No warrantee of any kind, expressed or implied, is included with this
  10. // software; use at your own risk, responsibility for damages (if any) to
  11. // anyone resulting from the use of this software rests entirely with the
  12. // user.
  13. //
  14. // Send bug reports, bug fixes, enhancements, requests, flames, etc., and
  15. // I'll try to keep a version up to date.  I can be reached as follows:
  16. //    mww@mitutoyo.nl                 (company site)
  17. //    mwassink@csi.com   (private site)
  18. /////////////////////////////////////////////////////////////////////////////
  19. #ifndef __RGBCOLOR_H__
  20. #define __RGBCOLOR_H__
  21. #define BLACK RGB( 000, 000, 000 )
  22. #define DARKBLUE RGB( 000, 000, 128 )
  23. #define DARKGREEN RGB( 000, 064, 000 )
  24. #define DARKCYAN RGB( 000, 064, 064 )
  25. #define DARKRED RGB( 064, 000, 000 )
  26. #define DARKMAGENTA RGB( 128, 000, 128 )
  27. #define BROWN RGB( 128, 128, 000 )
  28. #define DARKGRAY RGB( 128, 128, 128 )
  29. #define LIGHTGRAY RGB( 192, 192, 192 )
  30. #define LIGHTBLUE RGB( 000, 000, 255 )
  31. #define LIGHTGREEN RGB( 000, 255, 000 )
  32. #define LIGHTCYAN RGB( 000, 255, 255 )
  33. #define LIGHTRED RGB( 255, 000, 000 )
  34. #define LIGHTMAGENTA RGB( 255, 000, 255 )
  35. #define YELLOW RGB( 255, 255, 000 )
  36. #define WHITE RGB( 255, 255, 255 )
  37. #endif // __RGBCOLOR_H__