home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l430 / 1.ddi / CHAP6.ZIP / CURSICON.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-11  |  733 b   |  27 lines

  1. /* 
  2. CURSICON.H -- USER-related Cursor/Icon information structure
  3.  
  4. from "Undocumented Windows" by Schulman et al. (Addison-Wesley, 1992)
  5. Chapter 6: USER
  6.  
  7. Copyright (c) Dave Maxey 1992
  8. */
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13.  
  14. typedef struct { 
  15.     POINT   pntHotSpot;         /* Cursor hotspot (ignored for icon) */
  16.     WORD    nWidth;             /* Width of bitmap in pixels */
  17.     WORD    nHeight;            /* Height of bitmap in pixels */
  18.     WORD    nWidthBytes;        /* width of bitmap in bytes */
  19.     BYTE    byPlanes;           /* number of bit planes */
  20.     BYTE    byBitsPix;          /* number of bits per pixel */
  21.     } CURSORICONINFO, FAR *LPCURSORICONINFO;
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27.