home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / C_C++ / BorlandCompiler / freecommandLinetools.exe / Include / mtxattr.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-27  |  2.2 KB  |  38 lines

  1. #ifndef _MTXATTR_H_
  2. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  3. #define _MTXATTR_H_
  4.  
  5. // -----------------------------------------------------------------------
  6. // mtxattr.h  -- Microsoft Transaction Server Custom Properties                 
  7. //                                                                                                                                              
  8. // This file is the IDL include for Microsoft Transaction Server                
  9. // custom typelib properties.                                                                                   
  10. //                                                                                                                                              
  11. // COM+ 1.0                                                                             
  12. // Copyright (c) 1996-1998 Microsoft Corporation.  All Rights Reserved. 
  13. // -----------------------------------------------------------------------  
  14.  
  15. //======================================================================================
  16. // Component attributes
  17. //======================================================================================
  18.  
  19. #define         TLBATTR_TRANS_REQUIRED  17093CC5-9BD2-11cf-AA4F-304BF89C0001
  20. #define         TLBATTR_TRANS_NOTSUPP   17093CC6-9BD2-11cf-AA4F-304BF89C0001
  21. #define         TLBATTR_TRANS_REQNEW    17093CC7-9BD2-11cf-AA4F-304BF89C0001
  22. #define         TLBATTR_TRANS_SUPPORTED 17093CC8-9BD2-11cf-AA4F-304BF89C0001
  23. #define         TLBATTR_QUEUEABLE       E5FC3761-0BBA-11d2-B8FE-00C04FC340EE
  24.  
  25.  
  26. //======================================================================================
  27. // Component attribute MACROS
  28. //======================================================================================
  29.  
  30. #define TRANSACTION_REQUIRED            custom(TLBATTR_TRANS_REQUIRED,0)
  31. #define TRANSACTION_SUPPORTED           custom(TLBATTR_TRANS_SUPPORTED,0)
  32. #define TRANSACTION_NOT_SUPPORTED       custom(TLBATTR_TRANS_NOTSUPP,0)
  33. #define TRANSACTION_REQUIRES_NEW        custom(TLBATTR_TRANS_REQNEW,0)
  34. #define QUEUEABLE                       custom(TLBATTR_QUEUEABLE, 0)
  35.  
  36. #pragma option pop /*P_O_Pop*/
  37. #endif _MTXATTR_H_
  38.