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.

24 lines
613 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1999
  6. //
  7. // File: dll.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef __dll_h
  11. #define __dll_h
  12. extern HINSTANCE g_hInstance;
  13. #define GLOBAL_HINSTANCE (g_hInstance)
  14. HRESULT ThreadCoInitialize(void);
  15. void ThreadCoUninitialize(void);
  16. DWORD WaitOnThread(HANDLE *phThread);
  17. HRESULT _CreateSecurityPage(LPSECURITYINFO pSI, HPROPSHEETPAGE *phPage);
  18. HRESULT _EditSecurity(HWND hwndOwner, LPSECURITYINFO pSI);
  19. #endif