#ifndef UTILITY_HOOKS_H #define UTILITY_HOOKS_H TRUE /* ** $Filename: utility/hooks.h $ ** $Release: 2.04 Includes, V37.4 $ ** $Revision: 36.1 $ ** $Date: 90/07/12 $ ** ** callback hooks ** ** (C) Copyright 1989-1991 Commodore-Amiga Inc. ** All Rights Reserved */ #ifndef EXEC_TYPES_H #include "exec/types.h" #endif #ifndef EXEC_NODES_H #include "exec/nodes.h" #endif struct Hook { struct MinNode h_MinNode; ULONG (*h_Entry)(); ULONG (*h_SubEntry)(); VOID *h_Data; }; #endif