Source code of Windows XP (NT5)
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.

53 lines
657 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. test.c
  5. Abstract:
  6. Simple wrapper test that executes the gui setup exception migration code.
  7. Environment:
  8. WIN32 User Mode
  9. Author:
  10. Andrew Ritz (AndrewR) 21-Oct-1999
  11. --*/
  12. #include "setupp.h"
  13. #include "setuplog.h"
  14. BOOL
  15. MigrateExceptionPackages(
  16. IN HWND hProgress,
  17. IN DWORD StartAtPercent,
  18. IN DWORD StopAtPercent
  19. );
  20. int
  21. __cdecl
  22. main(
  23. IN int argc,
  24. IN char *argv[]
  25. )
  26. {
  27. SETUPLOG_CONTEXT lc;
  28. BOOL RetVal;
  29. InitializeSetupLog(&lc);
  30. RetVal = MigrateExceptionPackages(NULL,0,10);
  31. TerminateSetupLog(&lc);
  32. return RetVal;
  33. }