windows-nt/Source/XPSP1/NT/base/ntsetup/excppkg/test3/test.c
2020-09-26 16:20:57 +08:00

54 lines
657 B
C

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
test.c
Abstract:
Simple wrapper test that executes the gui setup exception migration code.
Environment:
WIN32 User Mode
Author:
Andrew Ritz (AndrewR) 21-Oct-1999
--*/
#include "setupp.h"
#include "setuplog.h"
BOOL
MigrateExceptionPackages(
IN HWND hProgress,
IN DWORD StartAtPercent,
IN DWORD StopAtPercent
);
int
__cdecl
main(
IN int argc,
IN char *argv[]
)
{
SETUPLOG_CONTEXT lc;
BOOL RetVal;
InitializeSetupLog(&lc);
RetVal = MigrateExceptionPackages(NULL,0,10);
TerminateSetupLog(&lc);
return RetVal;
}