home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / ipmcdefs.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  715b  |  32 lines

  1. // --ipmdefs.h-----------------------------------------------------------------
  2. //
  3. // Common definitions for the IPM Inbound and Outbound conversion
  4. // DLLs.
  5. //
  6. // Copyright (C) Microsoft Corp., 1986-1996.  All rights reserved.
  7. //
  8. // ----------------------------------------------------------------------------
  9.  
  10. #ifndef _IPMCDEFS_H
  11. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  12. #define _IPMCDEFS_H
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. // Constants used for TNEFed messages:
  19.  
  20. // associated TNEFed file name
  21. LPCSTR     szTnefFileName  = "MAPIMAIL.DAT";
  22.  
  23. // TNEF "unique" key
  24. const WORD wTnefKey        = 0x01AF;
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #pragma option pop /*P_O_Pop*/
  31. #endif
  32.