home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SEE4C10.ZIP / SEE32.PAS < prev    next >
Pascal/Delphi Source File  |  1998-05-18  |  2KB  |  44 lines

  1. unit see;
  2.  
  3. interface
  4.  
  5. const
  6.    SEE_MIN_RESPONSE_WAIT = 1;
  7.    SEE_MAX_RESPONSE_WAIT = 2;
  8.    SEE_CONNECT_WAIT = 3;
  9.    SEE_MIN_LINE_WAIT = 5;
  10.    SEE_MAX_LINE_WAIT = 6;
  11.    SEE_QUOTED_PRINTABLE = 8;
  12.    SEE_AUTO_CALL_DRIVER = 9;
  13.    SEE_LOG_FILE = 20;
  14.    SEE_GET_DEBUG_CHAR = 1;
  15.    SEE_GET_DEBUG_INTEGER = 2;
  16.    SEE_GET_ERROR_TEXT = 3;
  17.    SEE_GET_COUNTER = 4;
  18.    SEE_GET_RESPONSE = 5;
  19.    SEE_GET_SOCK_ERROR = 6;
  20.    
  21.  function seeVerifyAddress(EmailAddr : PChar) : Integer; stdcall
  22.  function seeConnectTo  (Server, From, Reply : PChar) : Integer; stdcall
  23.  function seeSendTo (To, CC, BCC, Subj, Msg, Attach : PChar) : Integer; stdcall
  24.  function seeClose () : Integer; stdcall
  25.  function seeDriver () : Integer; stdcall
  26.  function seeDebug (Index : Integer; Buffer : PChar; BufLen : Integer) : Integer; stdcall
  27.  function seeIntegerParam (Index, Value : Integer) : Integer; stdcall
  28.  function seeStringParam (Index : Integer; Value : PChar) : Integer; stdcall
  29.  function seeErrorText (Code : Integer; Buffer : PChar; BufLen : Integer) : Integer; stdcall
  30.  
  31. implementation
  32.  
  33.  function seeVerifyAddress; external 'SEE32.DLL';
  34.  function seeConnectTo; external 'SEE32.DLL';
  35.  function seeSendTo; external 'SEE32.DLL';
  36.  function seeClose; external 'SEE32.DLL';
  37.  function seeDriver; external 'SEE32.DLL';
  38.  function seeDebug; external 'SEE32.DLL';
  39.  function seeIntegerParam; external 'SEE32.DLL';
  40.  function seeStringParam; external 'SEE32.DLL';
  41.  function seeErrorText; external 'SEE32.DLL';
  42.  
  43. end.
  44.