home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / EXAMPLES.ZIP / FILTER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  330 b   |  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.