Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | pmbaty | 1 | #ifndef _HOOK_H_ |
2 | #define _HOOK_H_ |
||
3 | |||
4 | #include "brender/br_types.h" |
||
5 | |||
6 | br_error HostInterruptHook(host_interrupt_hook* h, br_uint_8 vector, br_uint_32 off, br_uint_16 sel); |
||
7 | |||
8 | br_error HostInterruptUnhook(host_interrupt_hook* h); |
||
9 | |||
10 | br_error HostExceptionHook(host_exception_hook* h, br_uint_8 exception, br_uint_32 off, br_uint_16 sel); |
||
11 | |||
12 | br_error HostExceptionUnhook(host_exception_hook* h); |
||
13 | |||
14 | #endif |