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.
54 lines
816 B
54 lines
816 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1998 - 2001
|
|
//
|
|
// File : utils.h
|
|
//
|
|
// Contents :
|
|
//
|
|
// Notes :
|
|
//
|
|
// Author : Raghu Gatta (rgatta) 11 May 2001
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
extern BOOL g_fInitCom;
|
|
|
|
|
|
HRESULT
|
|
HrInitializeHomenetConfig(
|
|
BOOL* pfInitCom,
|
|
IHNetCfgMgr** pphnc
|
|
);
|
|
|
|
HRESULT
|
|
HrUninitializeHomenetConfig(
|
|
BOOL fUninitCom,
|
|
IHNetCfgMgr* phnc
|
|
);
|
|
|
|
//
|
|
// useful extern functions
|
|
//
|
|
|
|
extern "C"
|
|
{
|
|
|
|
// from \rras\netsh\shell
|
|
|
|
LPWSTR
|
|
WINAPI
|
|
MakeString(
|
|
IN HANDLE hModule,
|
|
IN DWORD dwMsgId,
|
|
...
|
|
);
|
|
|
|
VOID
|
|
WINAPI
|
|
FreeString(
|
|
IN LPWSTR pwszMadeString
|
|
);
|
|
|
|
}
|