home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / ipmcdefs.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  634b  |  30 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. #define _IPMCDEFS_H
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. // Constants used for TNEFed messages:
  18.  
  19. // associated TNEFed file name
  20. LPCSTR     szTnefFileName  = "MAPIMAIL.DAT";
  21.  
  22. // TNEF "unique" key
  23. const WORD wTnefKey        = 0x01AF;
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif
  30.