home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBMail / HTBMAIL.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  979 b   |  39 lines

  1. /*************************************************************
  2. HTBmail.dll
  3.  
  4. Copyright 1999 TransEra Corporation
  5.  
  6. htbmail.cpp  
  7.       
  8. With help from http://www.codeguru.com/internet/imapi.shtml 
  9. *************************************************************/
  10.  
  11. #if !defined(AFX_HTBMAIL_H__D6D85C85_5BEC_11D3_8BB4_00105AC66D91__INCLUDED_)
  12. #define AFX_HTBMAIL_H__D6D85C85_5BEC_11D3_8BB4_00105AC66D91__INCLUDED_
  13.  
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17.  
  18. #ifndef __AFXWIN_H__
  19.     #error include 'stdafx.h' before including this file for PCH
  20. #endif
  21.  
  22. #include "resource.h"        // main symbols
  23.  
  24. #define COMMA            ","            // Used when splitting up the addresses        
  25. #define ADDR            {NULL}        // Initializes address to /0    
  26. #define MAX_ADDR        256            // Maximum address length
  27. #define C_DELIM            2            // Comma delimiter
  28.  
  29. class CHTBMAILApp : public CWinApp
  30. {
  31. public:
  32.     CHTBMAILApp();
  33.     public:
  34.     virtual BOOL InitInstance();    
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. #endif 
  39.