home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / mtxattr.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  2KB  |  33 lines

  1. #ifndef _MTXATTR_H_
  2. #define _MTXATTR_H_
  3.  
  4. // -----------------------------------------------------------------------
  5. // mtxattr.h  -- Microsoft Transaction Server Custom Properties            
  6. //                                                                        
  7. // This file is the IDL include for Microsoft Transaction Server        
  8. // custom typelib properties.                                            
  9. //                                                                        
  10. // Microsoft Transaction Server 2.0                                        
  11. // Copyright (c) 1996-1997 Microsoft Corporation.  All Rights Reserved.    
  12. // -----------------------------------------------------------------------  
  13.  
  14. //======================================================================================
  15. // Component attributes
  16. //======================================================================================
  17. #define        TLBATTR_TRANS_REQUIRED    17093CC5-9BD2-11cf-AA4F-304BF89C0001
  18. #define        TLBATTR_TRANS_NOTSUPP    17093CC6-9BD2-11cf-AA4F-304BF89C0001
  19. #define        TLBATTR_TRANS_REQNEW    17093CC7-9BD2-11cf-AA4F-304BF89C0001
  20. #define        TLBATTR_TRANS_SUPPORTED    17093CC8-9BD2-11cf-AA4F-304BF89C0001
  21.  
  22. //======================================================================================
  23. // Component attribute MACROS
  24. //======================================================================================
  25.  
  26. #define TRANSACTION_REQUIRED        custom(TLBATTR_TRANS_REQUIRED,0)
  27. #define TRANSACTION_SUPPORTED        custom(TLBATTR_TRANS_SUPPORTED,0)
  28. #define TRANSACTION_NOT_SUPPORTED    custom(TLBATTR_TRANS_NOTSUPP,0)
  29. #define TRANSACTION_REQUIRES_NEW    custom(TLBATTR_TRANS_REQNEW,0)
  30.  
  31.  
  32. #endif _MTXATTR_H_
  33.