home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SEE4C10.ZIP / SEE32.BAS < prev    next >
BASIC Source File  |  1998-05-13  |  1KB  |  30 lines

  1. '
  2. ' SEE32.BAS
  3. '
  4.  
  5. Declare Function seeVerifyAddress Lib "SEE32.DLL" (ByVal EmailAddr As String) As Long
  6. Declare Function seeConnectTo Lib "SEE32.DLL" (ByVal Server As String, ByVal From As String, ByVal Reply As String) As Long
  7. Declare Function seeSendTo Lib "SEE32.DLL" (ByVal Rcpt As String, ByVal CC As String, ByVal BCC As String, ByVal Subj As String, ByVal Msg As String, ByVal Attach As String) As Long
  8. Declare Function seeClose Lib "SEE32.DLL" () As Long
  9. Declare Function seeDriver Lib "SEE32.DLL" () As Long
  10. Declare Function seeDebug Lib "SEE32.DLL" (ByVal Index As Long, ByVal Buffer As String, ByVal BufLen As Long) As Long
  11. Declare Function seeIntegerParam Lib "SEE32.DLL" (ByVal Index As Long, ByVal Value As Long) As Long
  12. Declare Function seeStringParam Lib "SEE32.DLL" (ByVal Index As Long, ByVal Value As String) As Long
  13. Declare Function seeErrorText Lib "SEE32.DLL" (ByVal Code As Long, ByVal Buffer As String, ByVal BufLen As Long) As Long
  14.  
  15. Global Const SEE_MIN_RESPONSE_WAIT = 1
  16. Global Const SEE_MAX_RESPONSE_WAIT = 2
  17. Global Const SEE_CONNECT_WAIT = 3
  18. Global Const SEE_MIN_LINE_WAIT = 5
  19. Global Const SEE_MAX_LINE_WAIT = 6
  20. Global Const SEE_QUOTED_PRINTABLE = 8
  21. Global Const SEE_AUTO_CALL_DRIVER = 9
  22. Global Const SEE_LOG_FILE = 20
  23.  
  24. Global Const SEE_GET_DEBUG_CHAR = 1
  25. Global Const SEE_GET_DEBUG_INTEGER = 2
  26. Global Const SEE_GET_ERROR_TEXT = 3
  27. Global Const SEE_GET_COUNTER = 4
  28. Global Const SEE_GET_RESPONSE = 5
  29. Global Const SEE_GET_SOCK_ERROR = 6
  30.