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.
26 lines
535 B
26 lines
535 B
#include "dspch.h"
|
|
#pragma hdrstop
|
|
|
|
#define PPOLICY_ACCOUNT_DOMAIN_INFO PVOID
|
|
|
|
static
|
|
DWORD
|
|
NtdsPrepareForDsUpgrade(
|
|
OUT PPOLICY_ACCOUNT_DOMAIN_INFO NewLocalAccountInfo,
|
|
OUT LPWSTR *NewAdminPassword
|
|
)
|
|
{
|
|
return ERROR_PROC_NOT_FOUND;
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order
|
|
// and are CASE SENSITIVE (i.e., lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(ntdsetup)
|
|
{
|
|
DLPENTRY(NtdsPrepareForDsUpgrade)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(ntdsetup)
|