home *** CD-ROM | disk | FTP | other *** search
- // Contents ---------------------------------------------------------------
- //
- // dsplist.h -- Include fild for display list module
- //
- // Version 1.0, Windows Socket Finger Daemon
- //
- // Copyright (C) Frederick W. Bent 1994
- // All rights reserved.
- //
- //
- // Ends -------------------------------------------------------------------
-
- #ifndef _DSPLIST_H_
- #define _DSPLIST_H_
- #include <windows.h>
-
- typedef struct line_item
- {
- HLOCAL hText;
- int len;
- HLOCAL next;
- } LINEITEM;
-
- VOID PushChars(char *buf, int buflen);
- BOOL OpenDisplayList(VOID);
- VOID CloseDisplayList(VOID);
- VOID RemoveFirstDisplayLine(VOID);
-
- VOID FreeLineList(HLOCAL hLine);
- VOID FreeDisplayList(VOID);
- VOID GetDisplayList(HLOCAL *ppLine, int *pNLines);
- HGLOBAL CopyDisplayList(VOID);
-
- #endif // _DSPLIST_H_
-