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.

44 lines
706 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. svcpack.h
  5. --*/
  6. #include <windows.h>
  7. #include <malloc.h>
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <string.h>
  11. #include <wtypes.h>
  12. #include <tchar.h>
  13. #include <setupapi.h>
  14. #include <spapip.h>
  15. #include <cfgmgr32.h>
  16. #include <regstr.h>
  17. #include <winuser.h>
  18. #include <commctrl.h>
  19. #include <richedit.h>
  20. #include <winsvc.h>
  21. #include <prsht.h>
  22. //
  23. // Defining the EXPORT qualifier
  24. //
  25. BOOL
  26. CALLBACK
  27. SvcPackCallbackRoutine(
  28. IN DWORD dwSetupInterval,
  29. IN DWORD dwParam1,
  30. IN DWORD dwParam2,
  31. IN DWORD dwParam3
  32. ) ;
  33. #define SVCPACK_PHASE_1 1
  34. #define SVCPACK_PHASE_2 2
  35. #define SVCPACK_PHASE_3 3
  36. #define SVCPACK_PHASE_4 4
  37.