home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pExec / CallBack.h next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  670 b   |  25 lines

  1. #ifndef __INC_POS_PEXEC_CALLBACK_H
  2. #define __INC_POS_PEXEC_CALLBACK_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>CallBack.h<<   12 Sep 1996    09:59:38 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_LIST_H
  12. #include <pExec/List.h>
  13. #endif
  14.  
  15. /*----------------------------------
  16. -----------------------------------*/
  17. struct pOS_Callback
  18. {
  19.   struct pOS_ExNode cb_Node;
  20.   ULONG             cb_UserData[2];
  21.   ULONG (*cb_Code)(_R_A0 const struct pOS_Callback*,_R_A1 APTR);
  22. };
  23.  
  24. #endif
  25.