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.

58 lines
1.2 KiB

  1. /********************************************************/
  2. /* Microsoft Windows NT */
  3. /* Copyright(c) Microsoft Corp., 1990, 1991 */
  4. /********************************************************/
  5. /*
  6. * uimsg.h
  7. *
  8. * Defines the prototypes for misc functions in mprui.dll and
  9. * ntlanman.dll used to support the thunked 16bit wfwnet.drv.
  10. *
  11. * Note that all prototypes here end with A0. The A denotes ANSI,
  12. * as opposed to Unicode while the 0 means its even before 1 (since
  13. * this is for WFW support.
  14. *
  15. * FILE HISTORY:
  16. * ChuckC (Chuck Y Chan) 3/28/93 Created
  17. */
  18. #ifndef _WNET16_H_
  19. #define _WNET16_H_
  20. #include <mpr.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. DWORD ServerBrowseDialogA0(
  25. HWND hwnd,
  26. CHAR *pchBuffer,
  27. DWORD cchBufSize) ;
  28. DWORD BrowseDialogA0(
  29. HWND hwnd,
  30. DWORD nType,
  31. CHAR *pszName,
  32. DWORD cchBufSize) ;
  33. DWORD ShareAsDialogA0(
  34. HWND hwnd,
  35. DWORD nType,
  36. CHAR *pszPath) ;
  37. DWORD StopShareDialogA0(
  38. HWND hwnd,
  39. DWORD nType,
  40. CHAR *pszPath) ;
  41. DWORD RestoreConnectionA0(
  42. HWND hwnd,
  43. CHAR *pszName) ;
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif // _WNET16_H_