home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / INCLUDE / BITMAP.CH < prev    next >
Text File  |  1995-03-23  |  667b  |  33 lines

  1. /////////////////////////
  2. //
  3. //    bitmap.ch - Windows bitmap definitions
  4. //
  5. //    Written by:    John M. Skelton, 2-Aug-94.
  6. //
  7. //    Copyright (C) 1994 Skelton Software, Kendal Cottage, Hillam, Leeds LS25 5HP, UK.
  8. //    All Rights Reserved.
  9. //
  10. /////////////////////////
  11.  
  12.  
  13. #ifndef    C4W_BITMAP
  14. #define    C4W_BITMAP
  15.  
  16. // BITMAP structure (as Clipper array)
  17.  
  18. #define    BM_Type        1
  19. #define    BM_Width    2
  20. #define    BM_Height    3
  21. #define    BM_WidthBytes    4
  22. #define    BM_Planes    5
  23. #define    BM_BitsPixel    6
  24. #define    BM_Bits        7
  25.  
  26. #define    BM_STRUCT_DEF    "int,int,int,int,byte,byte,long"
  27.  
  28. #ifndef    SRCCOPY
  29. #define    SRCCOPY        13369376    // 0x00CC0020L
  30. #endif    // SRCCOPY
  31.  
  32. #endif    // C4W_BITMAP
  33.