home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / xactomsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  666 b   |  23 lines

  1. /* ----------------------------------------------------------------------------
  2. Microsoft    D.T.C (Distributed Transaction Coordinator)
  3.  
  4. (c)    1995    Microsoft Corporation.    All Rights Reserved
  5.  
  6. @doc
  7.  
  8. @module        XACTOMSG.H    |
  9.  
  10. @devnotes    Macro to convert from transaction error message values to 
  11.         message ids in edudtc.dll
  12.  
  13. @rev    0    |    29-Aug-1995    |    Shaiwals |    Created
  14. ----------------------------------------------------------------------------- */
  15. #ifndef __XACTOMSG_H__
  16. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  17. #define __XACTOMSG_H__
  18.  
  19. #define XACTTOMSG(dwXact) (dwXact-0x00040000+0x40000000)
  20.  
  21. #pragma option pop /*P_O_Pop*/
  22. #endif __XACTOMSG_H__
  23.