windows-nt/Source/XPSP1/NT/net/config/upgrade/netupgrd/netupgrd.h

59 lines
1.2 KiB
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#pragma once
#include <winnt32p.h>
#include "oemupgex.h"
extern WINNT32_PLUGIN_INIT_INFORMATION_BLOCK g_PlugInInfo;
extern NetUpgradeInfo g_NetUpgradeInfo;
extern HINSTANCE g_hinst;
extern const WCHAR c_szNetUpgradeDllName[];
// Entry points. See winnt32p.h for explanation of these
//
DWORD
Winnt32PluginInit(
BOOL *CancelledFlag,
BOOL *UpgradeFlag,
PCWSTR SourcePath);
DWORD
Winnt32PluginGetPages(
PUINT PageCount1,
LPPROPSHEETPAGE *Pages1,
PUINT PageCount2,
LPPROPSHEETPAGE *Pages2);
DWORD
Winnt32WriteParams(
PCWSTR FileName);
DWORD
Winnt32Cleanup(
VOID);
class CWInfFile;
//Private entry points
BOOL WriteNetworkInfoToAnswerFile (
IN CWInfFile *pwifAnswerFile);
HRESULT HrInitNetUpgrade();
void AbortUpgradeFn(IN DWORD dwErrorCode, IN PCWSTR szMessage);
void AbortUpgradeSz(IN DWORD dwErrorCode, IN PCWSTR szMessage);
void AbortUpgradeId(IN DWORD dwErrorCode, IN DWORD dwResourceId);
BOOL FIsUpgradeAborted();
BOOL FGetConfirmationAndAbortUpgrade(IN PCWSTR szMessage);
BOOL FGetConfirmationAndAbortUpgradeId(IN DWORD dwErrorMessageId);
#ifdef DBG
__declspec(dllexport) void SetNuAfile(CWInfFile* afile);
__declspec(dllexport) void NuDumpAFile();
#endif