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.
|
|
/********************************************************/ /* 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_
|