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.

45 lines
1.3 KiB

  1. #ifndef _KEYMGR_H_
  2. #define _KEYMGR_H_
  3. /*++
  4. Copyright (c) 2000 Microsoft Corporation
  5. Module Name:
  6. KEYMGR.H
  7. Abstract:
  8. KeyMgr application public API definitions
  9. Author:
  10. 990917 johnhaw Created.
  11. georgema 000310 updated
  12. Environment:
  13. Win98, Win2000
  14. Revision History:
  15. --*/
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. BOOL WINAPI DllMain(HINSTANCE,DWORD,LPVOID);
  20. LONG WINAPI CPlApplet(HWND hwndCPl,UINT uMsg,LPARAM lParam1,LPARAM lParam2);
  21. void APIENTRY KRShowKeyMgr(HWND hwParent,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  22. void APIENTRY PRShowSaveWizardW(HWND hwndOwner,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  23. void APIENTRY PRShowSaveWizardExW(HWND hwParent,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  24. void APIENTRY PRShowSaveFromMsginaW(HWND hwParent,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  25. void APIENTRY PRShowRestoreWizardW(HWND hwndOwner,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  26. void APIENTRY PRShowRestoreWizardExW(HWND hwndOwner,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  27. void APIENTRY PRShowRestoreFromMsginaW(HWND hwndOwner,HINSTANCE hInstance,LPWSTR pszCmdLine,int nCmdShow);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif // _KEYMGR_H_
  32. //
  33. ///// End of file: KeyMgr.h ////////////////////////////////////////////////