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.

39 lines
1006 B

  1. /* File: D:\WACKER\tdll\globals.h (Created: 26-Nov-1993)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1 $
  7. * $Date: 10/05/98 12:41p $
  8. */
  9. #if !defined(INCL_GLOBALS)
  10. #define INCL_GLOBALS
  11. /* --- Functions to set and query global paramaters. --- */
  12. LPTSTR glblQueryHelpFileName(void);
  13. void glblSetHelpFileName(void);
  14. HINSTANCE glblQueryHinst(void);
  15. void glblSetHinst(const HINSTANCE hInst);
  16. HINSTANCE glblQueryDllHinst(void);
  17. void glblSetDllHinst(const HINSTANCE hInst);
  18. void glblSetAccelHdl(const HACCEL hAccelerator);
  19. HACCEL glblQueryAccelHdl(void);
  20. void glblSetHwndFrame(const HWND hwnd);
  21. HWND glblQueryHwndFrame(void);
  22. int glblAddModelessDlgHwnd(const HWND hwnd);
  23. int glblDeleteModelessDlgHwnd(const HWND hwnd);
  24. int glblQueryProgramStatus(void);
  25. int glblSetProgramStatus(int nStatus);
  26. HWND glblQueryHwndBanner(void);
  27. void glblSetHwndBanner(const HWND hwnd);
  28. #endif