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.
37 lines
711 B
37 lines
711 B
#include "netpch.h"
|
|
#pragma hdrstop
|
|
|
|
#include "netcfgx.h"
|
|
#include "netcfgp.h"
|
|
|
|
|
|
static
|
|
HRESULT
|
|
WINAPI
|
|
HrDiAddComponentToINetCfg(
|
|
INetCfg* pINetCfg,
|
|
INetCfgInternalSetup* pInternalSetup,
|
|
const NIQ_INFO* pInfo)
|
|
{
|
|
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
|
|
}
|
|
|
|
static
|
|
VOID
|
|
WINAPI
|
|
UpdateLanaConfigUsingAnswerfile (
|
|
IN PCWSTR pszAnswerFile,
|
|
IN PCWSTR pszSection)
|
|
{
|
|
}
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(netcfgx)
|
|
{
|
|
DLPENTRY(HrDiAddComponentToINetCfg)
|
|
DLPENTRY(UpdateLanaConfigUsingAnswerfile)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(netcfgx)
|