Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
519 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: ddstub.h
  3. *
  4. * Information shared between DirectDraw and Direct3D stubs
  5. *
  6. * Created: 31-May-1996
  7. * Author: Drew Bliss [drewb]
  8. *
  9. * Copyright (c) 1995-1999 Microsoft Corporation
  10. \**************************************************************************/
  11. #ifndef __DDSTUB_H__
  12. #define __DDSTUB_H__
  13. extern HANDLE ghDirectDraw;
  14. #define DD_HANDLE(h) ((h) != 0 ? (HANDLE) (h) : ghDirectDraw)
  15. #endif // __DDSTUB_H__