home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / utility / hooks.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  488 b   |  34 lines

  1. #ifndef UTILITY_HOOKS_H
  2. #define UTILITY_HOOKS_H TRUE
  3. /*
  4. ** $Filename: utility/hooks.h $
  5. ** $Release: 2.04 Includes, V37.4 $
  6. ** $Revision: 36.1 $
  7. ** $Date: 90/07/12 $
  8. **
  9. ** callback hooks
  10. **
  11. ** (C) Copyright 1989-1991 Commodore-Amiga Inc.
  12. ** All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include "exec/types.h"
  17. #endif
  18.  
  19. #ifndef EXEC_NODES_H
  20. #include "exec/nodes.h"
  21. #endif
  22.  
  23.  
  24. struct Hook {
  25.  struct MinNode h_MinNode;
  26.  ULONG (*h_Entry)(); 
  27.  ULONG (*h_SubEntry)();
  28.  VOID *h_Data; 
  29. };
  30.  
  31.  
  32.  
  33. #endif
  34.