natfeat.h 530 B

12345678910111213141516171819202122
  1. /*
  2. * ARAnyM hardware support via Native Features (natfeats)
  3. *
  4. * Copyright (c) 2005 Petr Stehlik of ARAnyM dev team
  5. *
  6. * This software may be used and distributed according to the terms of
  7. * the GNU General Public License (GPL), incorporated herein by reference.
  8. */
  9. #ifndef _NATFEAT_H
  10. #define _NATFEAT_H
  11. long nf_get_id(const char *feature_name);
  12. long nf_call(long id, ...);
  13. void nf_init(void);
  14. void nf_shutdown(void);
  15. void nfprint(const char *fmt, ...)
  16. __attribute__ ((format (printf, 1, 2)));
  17. # endif /* _NATFEAT_H */