home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / DIBVIEW / CAPTURE.H_ / CAPTURE.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  527 b   |  27 lines

  1. /*
  2.  *  capture.h
  3.  *
  4.  */
  5.  
  6. #ifndef CAPTURE_INCLUDED
  7. #define CAPTURE_INCLUDED
  8. /* Handle to a DIB */
  9. #define HDIB HANDLE
  10.  
  11. /* Print Area selection */
  12. #define PW_WINDOW        1
  13. #define PW_CLIENT        2
  14.  
  15.  
  16. /* Function prototypes */
  17. HDIB    CopyWindowToDIB(HWND, WORD);
  18. HDIB    CopyScreenToDIB(LPRECT);
  19. WORD    DestroyDIB(HDIB);
  20. HWND    SelectWindow(void);
  21. HANDLE  CaptureWindow (HWND hWndParent, BOOL bCaptureClient);
  22. HANDLE  CaptureFullScreen (HWND hWndParent);
  23. BOOL    ToggleCaptureHide (void);
  24.  
  25. #endif
  26.  
  27.