home *** CD-ROM | disk | FTP | other *** search
- // Contents ---------------------------------------------------------------
- //
- // strlib.h -- Include file for String Library
- //
- // Version 1.0, Windows Socket Finger Daemon
- //
- // Copyright (C) Frederick W. Bent 1994
- // All rights reserved.
- //
- //
- // Description
- //
- //
- // Ends -------------------------------------------------------------------
-
- // History ----------------------------------------------------------------
- //
- // 6/28/94 1.0 Fred Bent Wrote this thing
- //
- // Ends -------------------------------------------------------------------
-
- #if !defined(_STRLIB_H_)
- #define _STRLIB_H_ 1
-
- #define MAX_STRINGS 256
-
- typedef BOOL CALLBACK GETSTR(LPSTR, LPARAM);
-
- BOOL AddString( LPSTR lpStr);
- BOOL DeleteString( LPSTR lpStr);
- BOOL DeleteFirstString(void);
- int GetStrings( FARPROC, LPARAM);
- int NumberOfStrings(void);
- BOOL DestroyStrings(void);
-
- #endif