1
0

stockobjects.h 953 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef NULLOSFT_MEDIALIBRARY_STOCK_OBJECTS_HEADER
  2. #define NULLOSFT_MEDIALIBRARY_STOCK_OBJECTS_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <windows.h>
  7. #define CACHED_DC 0x0000
  8. #define WNDBCK_BRUSH 0x0001
  9. #define ITEMBCK_BRUSH 0x0002
  10. #define HILITE_BRUSH 0x0003
  11. #define ITEMTEXT_BRUSH 0x0004
  12. #define BRUSH_MIN 0x0001
  13. #define BRUSH_MAX 0x0004
  14. #define PEN_MIN 0x0020
  15. #define PEN_MAX 0x0028
  16. #define HILITE_PEN 0x0020
  17. #define HEADERTOP_PEN 0x0021
  18. #define HEADERMIDDLE_PEN 0x0022
  19. #define HEADERBOTTOM_PEN 0x0023
  20. #define WNDBCK_PEN 0x0024
  21. #define MENUBORDER_PEN 0x0025
  22. #define TOOLTIPBORDER_PEN 0x0026
  23. #define ITEMBCK_PEN 0x0027
  24. #define ITEMTEXT_PEN 0x0028
  25. #define SKIN_FONT 0x0100
  26. #define DEFAULT_FONT 0x0101
  27. void MlStockObjects_Init();
  28. void MlStockObjects_Free();
  29. void MlStockObjects_Reset();
  30. HANDLE MlStockObjects_Get(UINT type);
  31. #endif // NULLOSFT_MEDIALIBRARY_STOCK_OBJECTS_HEADER