Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

  1. #include <windows.h>
  2. #include <objbase.h>
  3. #include <initguid.h>
  4. DEFINE_GUID(BFID_MONOCHROME,
  5. 0xe436eb78, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  6. // e436eb79-524f-11ce-9f53-0020af0ba770 BFID_RGB4
  7. DEFINE_GUID(BFID_RGB_4,
  8. 0xe436eb79, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  9. // e436eb7a-524f-11ce-9f53-0020af0ba770 BFID_RGB8
  10. DEFINE_GUID(BFID_RGB_8,
  11. 0xe436eb7a, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  12. // e436eb7b-524f-11ce-9f53-0020af0ba770 BFID_RGB565
  13. DEFINE_GUID(BFID_RGB_565,
  14. 0xe436eb7b, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  15. // e436eb7c-524f-11ce-9f53-0020af0ba770 BFID_RGB555
  16. DEFINE_GUID(BFID_RGB_555,
  17. 0xe436eb7c, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  18. // e436eb7d-524f-11ce-9f53-0020af0ba770 BFID_RGB24
  19. DEFINE_GUID(BFID_RGB_24,
  20. 0xe436eb7d, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);
  21. // e436eb7e-524f-11ce-9f53-0020af0ba770 BFID_RGB32
  22. DEFINE_GUID(BFID_RGB_32,
  23. 0xe436eb7e, 0x524f, 0x11ce, 0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70);