home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pDOS / Pattern.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  793 b   |  38 lines

  1. #ifndef __INC_POS_PDOS_PATTERN_H
  2. #define __INC_POS_PDOS_PATTERN_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>Pattern.h<<   31 Jul 1996    09:09:54 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PDOS_DOSTYPES_H
  12. #include <pDOS/DosTypes.h>
  13. #endif
  14. #ifndef __INC_POS_PDOS_PARSING_H
  15. #include <pDOS/Parsing.h>
  16. #endif
  17.  
  18.  
  19.  
  20.  
  21. /*----------------------------------
  22. -----------------------------------*/
  23. struct pOS_PatternMatching
  24. {
  25.   struct pOS_Parse        pmt_Parse;
  26.   struct pOS_PatternObj **pmt_First;
  27.   UWORD                   pmt_Cnt;
  28.  
  29.   UBYTE  pmt_Reserved[16];
  30. };
  31.  
  32.  
  33. #define _pOS_DOSTOKENS "()#?%[]*~"
  34.  
  35.  
  36.  
  37. #endif
  38.