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.

25 lines
720 B

  1. // This files is where I am going to put all the GUID fixups for the 64bit project
  2. #ifdef IA64
  3. #define INITGUID
  4. #include <guiddef.h>
  5. // #include <coguid.h>
  6. // allocate from section:
  7. #pragma section(".rdata")
  8. #define RDATA_SECTION __declspec(allocate(".rdata"))
  9. EXTERN_C RDATA_SECTION const GUID IID_IDispatch;
  10. EXTERN_C RDATA_SECTION const GUID IID_IPersistStreamInit;
  11. EXTERN_C RDATA_SECTION const GUID IID_IPersistStream;
  12. EXTERN_C RDATA_SECTION const GUID IID_IPersistStorage;
  13. EXTERN_C RDATA_SECTION const GUID IID_IConnectionPointContainer;
  14. EXTERN_C RDATA_SECTION const GUID IID_IErrorInfo;
  15. DEFINE_GUID(GUID_NULL, 0L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  16. #else
  17. #pragma message("itdfguid.h is IA64 specific!")
  18. #endif