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.

36 lines
879 B

  1. /*===================================================================
  2. Microsoft Denali
  3. Microsoft Confidential.
  4. Copyright 1996 Microsoft Corporation. All Rights Reserved.
  5. Component: Script Manager
  6. File: InitGuid.cpp
  7. Owner: AndrewS
  8. Init all guids used by Denali in one place.
  9. We are only allowed to #include objbase with INITGUID set once,
  10. and after that we need to create all our GUIDs. Otherwise, the
  11. linker complains about redefeined symbols. We do it here.
  12. ===================================================================*/
  13. #define CINTERFACE
  14. #include <objbase.h>
  15. #include <initguid.h>
  16. #include "_asptlb.h"
  17. #include "_asptxn.h"
  18. #include "activscp.h"
  19. #include "activdbg.h"
  20. #include "wraptlib.h"
  21. #include "denguid.h"
  22. #include "asptxn_i.c"
  23. #if _IIS_5_1
  24. #include <iadm.h>
  25. #elif _IIS_6_0
  26. #include <iadmw.h>
  27. #else
  28. #error "Neither _IIS_6_0 nor _IIS_5_1 is defined"
  29. #endif