Source code of Windows XP (NT5)
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.

32 lines
854 B

  1. #ifndef _FSWINDOW_H
  2. #define _FSWINDOW_H
  3. //-----------------------------------------------------------------------------
  4. // File: FSWindow.H
  5. //
  6. // Desc: Header file for full-screen non-GDI window update functions
  7. //
  8. // Copyright (c) 1998-1999 Microsoft Corporation. All rights reserved.
  9. //-----------------------------------------------------------------------------
  10. #define USE_SURF4
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. // Exported function prototypes
  15. void FSWindow_Init(HWND hwndApp, IDirectDraw7 *dd,
  16. IDirectDrawSurface7 *FrontBuffer,
  17. IDirectDrawSurface7 *BackBuffer);
  18. HWND FSWindow_Begin(HWND hwnd,BOOL StaticContent);
  19. void FSWindow_End(void);
  20. void FSWindow_Update(void);
  21. BOOL FSWindow_IsActive(void);
  22. BOOL FSWindow_IsStatic(void);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif // _FSWINDOW_H