Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / aros / kernel_host.h
blob1ca07220b97b89a3b1243c4ef09f89aa45fecd77
1 /*
2 This include file is used for compiling host-side parts of hardware emulation modules
3 on hosted AROS. These functions reside in host-side kernel module.
5 This API is experimental and subject to change.
6 */
8 #ifndef _AROS_KERNEL_HOST_H
9 #define _AROS_KERNEL_HOST_H
11 #ifdef _WIN32
12 #define IMPORT __declspec(dllimport)
13 #else
14 #define IMPORT
15 #endif
17 unsigned long IMPORT KrnCauseIRQ(unsigned char irq);
19 #endif