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

Windows编程

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // charset.h : Contains bitmap character images.
  3. //
  4. // Written by Jeff Miller
  5. // of Microsoft Product Support Services, Languages Developer Support
  6. //
  7. // This is a part of the Microsoft Foundation Classes C++ library.
  8. // Copyright (C) 1992-1998 Microsoft Corporation
  9. // All rights reserved.
  10. //
  11. // This source code is only intended as a supplement to the
  12. // Microsoft Foundation Classes Reference and related
  13. // electronic documentation provided with the library.
  14. // See these sources for detailed information regarding the
  15. // Microsoft Foundation Classes product.
  16. // See the documentation for more information on the
  17. // format of this file.
  18. #ifndef __CHARSET_H__
  19. #define __CHARSET_H__
  20. // all characters are 8x16
  21. #define char_width 8
  22. #define char_height 16
  23. static unsigned char char_bits[11][char_height] =
  24. {
  25. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x66, 0xC3, 0xC3,
  26. 0xDB, 0xDB, 0xC3, 0xC3, 0x66, 0x3C }, // 0
  27. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x1C, 0x1E, 0x18,
  28. 0x18, 0x18, 0x18, 0x18, 0x18, 0x7E }, // 1
  29. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x63, 0x60, 0x30,
  30. 0x18, 0x0C, 0x06, 0x03, 0x63, 0x7F }, // 2
  31. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x63, 0x60, 0x60,
  32. 0x3C, 0x60, 0x60, 0x60, 0x63, 0x3E }, // 3
  33. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x38, 0x3C, 0x36,
  34. 0x33, 0x7F, 0x30, 0x30, 0x30, 0x78 }, // 4
  35. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x03, 0x03, 0x03,
  36. 0x3F, 0x60, 0x60, 0x60, 0x63, 0x3E }, // 5
  37. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x06, 0x03, 0x03,
  38. 0x3F, 0x63, 0x63, 0x63, 0x63, 0x3E }, // 6
  39. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x63, 0x60, 0x60,
  40. 0x30, 0x18, 0x0C, 0x0C, 0x0C, 0x0C }, // 7
  41. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x63, 0x63, 0x63,
  42. 0x3E, 0x63, 0x63, 0x63, 0x63, 0x3E }, // 8
  43. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x63, 0x63, 0x63,
  44. 0x7E, 0x60, 0x60, 0x60, 0x30, 0x1E }, // 9
  45. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18,
  46. 0x00, 0x00, 0x00, 0x18, 0x18, 0x00 }, // :
  47. };
  48. #endif