home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / FILTER.H < prev    next >
Text File  |  1992-02-18  |  330b  |  20 lines

  1. /*
  2.    Filter.h
  3.    Copyright (c) 1989 Borland International, Inc.
  4.    All rights reserved.
  5. */
  6.  
  7. #if !defined(__FILTER__)
  8. #define __FILTER__
  9.  
  10. #define PipeId          "BI#PIP#OK"
  11. #define PipeIdLen       10
  12.  
  13. typedef enum MsgType {
  14.   MsgNewFile,
  15.   MsgNewLine,
  16.   MsgEoFile = 0x007F,
  17. } MsgType;
  18.  
  19. #endif /* __FILTER__ */
  20.