mirror of https://github.com/tongzx/nt5src
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.
28 lines
660 B
28 lines
660 B
/*****************************************************************/
|
|
/** Microsoft Windows NT **/
|
|
/** Copyright(c) Microsoft Corp., 1991 **/
|
|
/*****************************************************************/
|
|
|
|
/*
|
|
* sharefmx.hxx
|
|
* Contains functions called by FMExtensionProc
|
|
*
|
|
* History:
|
|
* Yi-HsinS 8/15/91 Created
|
|
*
|
|
*/
|
|
|
|
#ifndef _SHAREFMX_HXX_
|
|
#define _SHAREFMX_HXX_
|
|
|
|
#ifndef RC_INVOKED
|
|
|
|
extern "C"
|
|
{
|
|
APIERR ShareCreate( HWND hwnd );
|
|
APIERR ShareStop( HWND hwnd );
|
|
VOID ShareManage( HWND hwnd, const TCHAR *pszServer );
|
|
}
|
|
|
|
#endif // RC_INVOKED
|
|
#endif
|