Leaked source code of windows server 2003
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
2.2 KiB

  1. #ifndef _MTXATTR_H_
  2. #define _MTXATTR_H_
  3. // -----------------------------------------------------------------------
  4. // mtxattr.h -- Microsoft Transaction Server Custom Properties
  5. //
  6. // This file is the IDL include for Microsoft Transaction Server
  7. // custom typelib properties.
  8. //
  9. // COM+ 1.0
  10. // Copyright (c) 1996-1998 Microsoft Corporation. All Rights Reserved.
  11. // -----------------------------------------------------------------------
  12. //======================================================================================
  13. // Component attributes
  14. //======================================================================================
  15. #define TLBATTR_TRANS_REQUIRED 17093CC5-9BD2-11cf-AA4F-304BF89C0001
  16. #define TLBATTR_TRANS_NOTSUPP 17093CC6-9BD2-11cf-AA4F-304BF89C0001
  17. #define TLBATTR_TRANS_REQNEW 17093CC7-9BD2-11cf-AA4F-304BF89C0001
  18. #define TLBATTR_TRANS_SUPPORTED 17093CC8-9BD2-11cf-AA4F-304BF89C0001
  19. #define TLBATTR_QUEUEABLE E5FC3761-0BBA-11d2-B8FE-00C04FC340EE
  20. #define TLBATTR_COMTI_INTRINSICS 47065EDC-D7FE-4B03-919C-C4A50B749605
  21. //======================================================================================
  22. // Component attribute MACROS
  23. //======================================================================================
  24. #define TRANSACTION_REQUIRED custom(TLBATTR_TRANS_REQUIRED,0)
  25. #define TRANSACTION_SUPPORTED custom(TLBATTR_TRANS_SUPPORTED,0)
  26. #define TRANSACTION_NOT_SUPPORTED custom(TLBATTR_TRANS_NOTSUPP,0)
  27. #define TRANSACTION_REQUIRES_NEW custom(TLBATTR_TRANS_REQNEW,0)
  28. #define QUEUEABLE custom(TLBATTR_QUEUEABLE, 0)
  29. #define COMTI_INTRINSICS_ENABLED custom(TLBATTR_COMTI_INTRINSICS, 0)
  30. #endif _MTXATTR_H_