home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / file_cl.zip / DEFS.HPP next >
C/C++ Source or Header  |  1992-01-12  |  348b  |  17 lines

  1. #include <assert.h>
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4.  
  5. #define OK 0
  6. #define NO_OP 1
  7. #define ERR 2
  8. #define UNKNOWN 3
  9. #define END 4
  10.  
  11. // *** FICS
  12. typedef long OFFSET_T;    // type std des déplacements dans les fichiers
  13. #define MAXPATH_Nat 80    // len max d'un nom complet de fichier
  14.  
  15. // std fct
  16. void cdecl die(int, const char *, ...);
  17.