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.

34 lines
807 B

  1. #ifndef MIGENG_H
  2. #define MIGENG_H
  3. #include "migwiz.h"
  4. #include "shlwapi.h"
  5. #include "setupapi.h"
  6. // Engine
  7. #include "ism.h"
  8. #include "modules.h"
  9. #include "trans.h"
  10. HRESULT Engine_Initialize (PCTSTR ptszInfPath, BOOL fSource, BOOL fNetworkSupport, LPTSTR pszUsername,
  11. MESSAGECALLBACK pMessageCallback, PBOOL pfNetworkDetected);
  12. HRESULT Engine_AppendScript(BOOL fSource, PCTSTR ptszInfPath);
  13. HRESULT Engine_StartTransport (BOOL fSource, LPTSTR pszPath, PBOOL ImageIsValid, PBOOL ImageExists);
  14. HRESULT Engine_Parse ();
  15. HRESULT Engine_SelectComponentSet (UINT uSelectionGroup);
  16. HRESULT Engine_RegisterProgressBarCallback(PROGRESSBARFN pProgressCallback, ULONG_PTR pArg);
  17. HRESULT Engine_Execute(BOOL fSource);
  18. HRESULT Engine_Cancel();
  19. HRESULT Engine_Terminate ();
  20. #endif