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
2.0 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. //======================================================================================
  21. // Component attribute MACROS
  22. //======================================================================================
  23. #define TRANSACTION_REQUIRED custom(TLBATTR_TRANS_REQUIRED,0)
  24. #define TRANSACTION_SUPPORTED custom(TLBATTR_TRANS_SUPPORTED,0)
  25. #define TRANSACTION_NOT_SUPPORTED custom(TLBATTR_TRANS_NOTSUPP,0)
  26. #define TRANSACTION_REQUIRES_NEW custom(TLBATTR_TRANS_REQNEW,0)
  27. #define QUEUEABLE custom(TLBATTR_QUEUEABLE, 0)
  28. #endif _MTXATTR_H_