windows-nt/Source/XPSP1/NT/admin/netui/common/h/wnet16.h
2020-09-26 16:20:57 +08:00

59 lines
1.2 KiB
C

/********************************************************/
/* Microsoft Windows NT */
/* Copyright(c) Microsoft Corp., 1990, 1991 */
/********************************************************/
/*
* uimsg.h
*
* Defines the prototypes for misc functions in mprui.dll and
* ntlanman.dll used to support the thunked 16bit wfwnet.drv.
*
* Note that all prototypes here end with A0. The A denotes ANSI,
* as opposed to Unicode while the 0 means its even before 1 (since
* this is for WFW support.
*
* FILE HISTORY:
* ChuckC (Chuck Y Chan) 3/28/93 Created
*/
#ifndef _WNET16_H_
#define _WNET16_H_
#include <mpr.h>
#ifdef __cplusplus
extern "C" {
#endif
DWORD ServerBrowseDialogA0(
HWND hwnd,
CHAR *pchBuffer,
DWORD cchBufSize) ;
DWORD BrowseDialogA0(
HWND hwnd,
DWORD nType,
CHAR *pszName,
DWORD cchBufSize) ;
DWORD ShareAsDialogA0(
HWND hwnd,
DWORD nType,
CHAR *pszPath) ;
DWORD StopShareDialogA0(
HWND hwnd,
DWORD nType,
CHAR *pszPath) ;
DWORD RestoreConnectionA0(
HWND hwnd,
CHAR *pszName) ;
#ifdef __cplusplus
}
#endif
#endif // _WNET16_H_