home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / stretch3 / ddmm.h < prev    next >
C/C++ Source or Header  |  1997-07-14  |  691b  |  21 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:       ddmm.cpp
  6.  *  Content:    Routines for using DirectDraw on a multimonitor system
  7.  *
  8.  ***************************************************************************/
  9.  
  10. #ifdef __cplusplus
  11. extern "C" {            /* Assume C declarations for C++ */
  12. #endif  /* __cplusplus */
  13.  
  14. IDirectDraw * DirectDrawCreateFromDevice(LPSTR szDevice);
  15. IDirectDraw * DirectDrawCreateFromWindow(HWND hwnd);
  16. int           DirectDrawDeviceFromWindow(HWND hwnd, LPSTR szDevice, RECT*prc);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif    /* __cplusplus */
  21.