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.

35 lines
813 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Job Object Handler
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  7. //
  8. // File: guids.cxx
  9. //
  10. // Contents: guid allocations - guids are defined in mstask.h
  11. //
  12. // History: 24-May-95 EricB created
  13. //
  14. //-----------------------------------------------------------------------------
  15. #include "..\pch\headers.hxx"
  16. #pragma hdrstop
  17. //#include <windows.h>
  18. // initguid.h requires this.
  19. //
  20. #include <objbase.h>
  21. // this redefines the DEFINE_GUID() macro to do allocation.
  22. //
  23. #include <initguid.h>
  24. //
  25. // mstask.h contains the GUID
  26. // definitions in DEFINE_GUID macros. initguid.h causes the DEFINE_GUID
  27. // definitions to actually allocate data.
  28. //
  29. #include <mstask.h>
  30. #include <job_cls.hxx>