home *** CD-ROM | disk | FTP | other *** search
- #ifndef UTILITY_HOOKS_H
- #define UTILITY_HOOKS_H
-
- /*******************************************************************
- pOS / Amiga adapt
- *******************************************************************/
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
- #ifndef __INC_POS_PEXEC_CALLBACK_H
- #include <p:pExec/CallBack.h>
- #endif
-
-
- struct Hook
- {
- struct Node h_Node;
- APTR h_Data;
- ULONG h_Data2;
- ULONG (*h_Code)(_R_A0 struct Hook*,_R_A1 APTR);
- };
-
-
- #endif /* UTILITY_HOOKS_H */
-