Windows NT 4.0 source code leak
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.

89 lines
1.7 KiB

4 years ago
  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. mprui.h
  5. Abstract:
  6. Prototypes and manifests to support MPRUI.C.
  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. typedef DWORD (*PF_WNetConnectionDialog2) (
  16. HWND hwnd,
  17. DWORD dwType,
  18. WCHAR *lpHelpFile,
  19. DWORD nHelpContext
  20. ) ;
  21. typedef DWORD (*PF_WNetDisconnectDialog2) (
  22. HWND hwnd,
  23. DWORD dwType,
  24. WCHAR *lpHelpFile,
  25. DWORD nHelpContext
  26. ) ;
  27. typedef DWORD (*PF_WNetConnectionDialog1A) (
  28. LPCONNECTDLGSTRUCTA lpConnDlgStruct
  29. ) ;
  30. typedef DWORD (*PF_WNetConnectionDialog1W) (
  31. LPCONNECTDLGSTRUCTW lpConnDlgStruct
  32. ) ;
  33. typedef DWORD (*PF_WNetDisconnectDialog1A) (
  34. LPDISCDLGSTRUCTA lpDiscDlgStruct
  35. ) ;
  36. typedef DWORD (*PF_WNetDisconnectDialog1W) (
  37. LPDISCDLGSTRUCTW lpDiscDlgStruct
  38. ) ;
  39. typedef DWORD (*PF_WNetClearConnections) (
  40. HWND hWndParent
  41. ) ;
  42. typedef DWORD (*PF_DoPasswordDialog) (
  43. HWND hwndOwner,
  44. const TCHAR * pchResource,
  45. const TCHAR * pchUserName,
  46. TCHAR * pchPasswordReturnBuffer,
  47. ULONG cbPasswordReturnBuffer, // bytes!
  48. BOOL * pfDidCancel,
  49. BOOL fDownLevel
  50. ) ;
  51. typedef DWORD (*PF_DoProfileErrorDialog) (
  52. HWND hwndOwner,
  53. const TCHAR * pchDevice,
  54. const TCHAR * pchResource,
  55. const TCHAR * pchProvider,
  56. DWORD dwError,
  57. BOOL fAllowCancel,
  58. BOOL * pfDidCancel,
  59. BOOL * pfDisconnect,
  60. BOOL * pfHideErrors
  61. ) ;
  62. typedef DWORD (*PF_ShowReconnectDialog) (
  63. HWND hwndParent,
  64. PARAMETERS * Params
  65. );