idf.h 475 B

1234567891011121314151617181920
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. struct id_usr {
  7. union {
  8. struct macro *idu_macro;
  9. struct idf *idu_file;
  10. } idu_x;
  11. int idu_resmac;
  12. };
  13. #define IDF_TYPE struct id_usr
  14. #define IDF_HSIZE 6
  15. #define id_macro id_user.idu_x.idu_macro
  16. #define id_file id_user.idu_x.idu_file
  17. #define id_resmac id_user.idu_resmac
  18. #include <idf_pkg.spec>