Petr Stehlik | 65cd577 | 2008-11-18 21:02:18 +0100 | [diff] [blame] | 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 | */ |
Gideon Israel Dsouza | 849de0c | 2017-02-24 15:00:35 -0800 | [diff] [blame] | 9 | #include <linux/compiler.h> |
Petr Stehlik | 65cd577 | 2008-11-18 21:02:18 +0100 | [diff] [blame] | 10 | |
| 11 | #ifndef _NATFEAT_H |
| 12 | #define _NATFEAT_H |
| 13 | |
| 14 | long nf_get_id(const char *feature_name); |
| 15 | long nf_call(long id, ...); |
| 16 | |
| 17 | void nf_init(void); |
| 18 | void nf_shutdown(void); |
| 19 | |
| 20 | void nfprint(const char *fmt, ...) |
Gideon Israel Dsouza | 849de0c | 2017-02-24 15:00:35 -0800 | [diff] [blame] | 21 | __printf(1, 2); |
Petr Stehlik | 65cd577 | 2008-11-18 21:02:18 +0100 | [diff] [blame] | 22 | |
| 23 | # endif /* _NATFEAT_H */ |