fnmatchh.inc 597 B

123456789101112131415161718192021222324
  1. const
  2. FNM_PATHNAME = 1 shl 0;
  3. FNM_NOESCAPE = 1 shl 1;
  4. FNM_PERIOD = 1 shl 2;
  5. FNM_FILE_NAME = FNM_PATHNAME;
  6. FNM_LEADING_DIR = 1 shl 3;
  7. FNM_CASEFOLD = 1 shl 4;
  8. FNM_EXTMATCH = 1 shl 5;
  9. const
  10. FNM_NOMATCH = 1;
  11. FNM_NOSYS = -(1);
  12. function fnmatch(__pattern:Pchar; __name:Pchar; __flags:longint):longint;cdecl;external clib name 'fnmatch';
  13. { ---------------------------------------------------------------------
  14. Borland compatibility types
  15. ---------------------------------------------------------------------}
  16. // Type