/* File: SIMQ.h Contains: header stuff for the core of the Apple SIM layer Written by: Paul Wolf Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved. Change History (most recent first): 9/29/93 chp Include some prerequisite headers if necessary. 10/14/93 pdw roll-in. 5/5/93 PW Converted names to meanies-friendly names. Updated with latest from Ludwig stuff. 3/20/93 PW rolled in Ludwig changes. 3/1/93 DCB Added an ID parameter to the ResetQ function so that it could be used for ResetDevice as well as ResetBus. 11/20/92 DCB Removed include files to solve makefile dependency problems 10/8/92 PW Changed minor prototype details. 9/11/92 DCB Added queue support for the (singular) ResetDevice Parameter block. 8/31/92 DCB Added some function prototypes. */ #ifndef __SIMQ__ #define __SIMQ__ #ifndef __SIMCOREPRIV__ #include "SIMCorePriv.h" #endif /******** Function Prototypes ********/ SIM_IO * GetNextReadyIO( SIMglobals * SIMg); void ResetQueues( SIMglobals * SIMg, uchar ID); // void EnQIO( SIM_IO *ioPtr, SIMglobals * SIMg); void DeQIO( SIM_IO *ioPtr, SIMglobals * SIMg); SIM_IO * FindIO( SIM_IO * ioPtr, SIMglobals * SIMg); // SIM_IO * FindIOFromID( uchar TargetID, SIMglobals * SIMg); // void SwitchQ( SIM_IO * ioPtr, QHdrPtr newQ ); // #endif __SIMQ__