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.

57 lines
954 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. mprui.h
  5. Abstract:
  6. Prototypes and manifests to support mprui.cxx.
  7. Author:
  8. ChuckC 28-Jul-1992
  9. Environment:
  10. User Mode -Win32
  11. Notes:
  12. Revision History:
  13. 28-Jul-1992 Chuckc Created
  14. --*/
  15. DWORD
  16. DoPasswordDialog(
  17. HWND hwndOwner,
  18. TCHAR * pchResource,
  19. TCHAR * pchUserName,
  20. TCHAR * pchPasswordReturnBuffer,
  21. ULONG cbPasswordReturnBuffer, // bytes!
  22. BOOL * pfDidCancel,
  23. DWORD dwError
  24. );
  25. DWORD
  26. DoProfileErrorDialog(
  27. HWND hwndOwner,
  28. const TCHAR * pchDevice,
  29. const TCHAR * pchResource,
  30. const TCHAR * pchProvider,
  31. DWORD dwError,
  32. BOOL fAllowCancel,
  33. BOOL * pfDidCancel,
  34. BOOL * pfDisconnect,
  35. BOOL * pfHideErrors
  36. );
  37. DWORD
  38. ShowReconnectDialog(
  39. HWND hwndParent,
  40. PARAMETERS * Params
  41. );