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.

68 lines
934 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. master.h
  5. Abstract:
  6. Includes the headers needed throughout the Win9x upgrade
  7. project. This applies to both setup DLLs and all tools.
  8. Author:
  9. Jim Schmidt (jimschm) 06-Jan-1998
  10. Revision History:
  11. <alias> <date> <comments>
  12. --*/
  13. #pragma once
  14. #include "chartype.h"
  15. #define COBJMACROS
  16. //
  17. // Windows
  18. //
  19. #include <windows.h>
  20. #include <stdlib.h>
  21. #include <imagehlp.h>
  22. #include <stdio.h>
  23. #include <time.h>
  24. #include <setupapi.h>
  25. #include <shlobj.h>
  26. #include <objidl.h>
  27. #include <mmsystem.h>
  28. //
  29. // Setup
  30. //
  31. #include <setupbat.h>
  32. #include <sputils.h>
  33. //
  34. // Common includes
  35. //
  36. #include "common.h"
  37. #include "migutil.h"
  38. #include "fileenum.h"
  39. #include "memdb.h"
  40. #include "unattend.h"
  41. #include "progbar.h"
  42. #include "regops.h"
  43. #include "fileops.h"
  44. #include "win95reg.h"
  45. #include "snapshot.h"
  46. #include "linkpif.h"
  47. #include "safemode.h"
  48. #include "cablib.h"