home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / winsock / fingd100 / src / strlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  902 b   |  36 lines

  1. // Contents ---------------------------------------------------------------
  2. //
  3. //   strlib.h -- Include file for String Library
  4. //
  5. //   Version 1.0, Windows Socket Finger Daemon
  6. //
  7. //   Copyright (C) Frederick W. Bent 1994
  8. //   All rights reserved.
  9. //
  10. //
  11. // Description
  12. //
  13. //
  14. // Ends -------------------------------------------------------------------
  15.  
  16. // History ----------------------------------------------------------------
  17. //
  18. // 6/28/94  1.0  Fred Bent         Wrote this thing
  19. //
  20. // Ends -------------------------------------------------------------------
  21.  
  22. #if !defined(_STRLIB_H_)
  23. #define _STRLIB_H_    1
  24.  
  25. #define    MAX_STRINGS    256
  26.  
  27. typedef BOOL CALLBACK GETSTR(LPSTR, LPARAM);
  28.  
  29. BOOL    AddString( LPSTR lpStr);
  30. BOOL    DeleteString( LPSTR lpStr);
  31. BOOL    DeleteFirstString(void);
  32. int    GetStrings( FARPROC, LPARAM);
  33. int    NumberOfStrings(void);
  34. BOOL    DestroyStrings(void);
  35.  
  36. #endif