#ifndef CLIB_CARDRES_PROTOS_H #define CLIB_CARDRES_PROTOS_H /* ** $VER: cardres_protos.h 1.1 (04.12.91) ** Includes Release 38.56 ** ** C prototypes. For use with 32 bit integers only. ** ** (C) Copyright 1990-1992 Commodore-Amiga, Inc. ** All Rights Reserved */ #ifndef EXEC_TYPES_H #include #endif #ifndef EXEC_RESIDENT_H #include #endif #ifndef RESOURCES_CARD_H #include #endif struct CardHandle *OwnCard( struct CardHandle *handle ); void ReleaseCard( struct CardHandle *handle, unsigned long flags ); struct CardMemoryMap *GetCardMap( void ); BOOL BeginCardAccess( struct CardHandle *handle ); BOOL EndCardAccess( struct CardHandle *handle ); UBYTE ReadCardStatus( void ); BOOL CardResetRemove( struct CardHandle *handle, unsigned long flag ); UBYTE CardMiscControl( struct CardHandle *handle, unsigned long control_bits ); ULONG CardAccessSpeed( struct CardHandle *handle, unsigned long nanoseconds ); LONG CardProgramVoltage( struct CardHandle *handle, unsigned long voltage ); BOOL CardResetCard( struct CardHandle *handle ); BOOL CopyTuple( struct CardHandle *handle, UBYTE *buffer, unsigned long tuplecode, unsigned long size ); ULONG DeviceTuple( UBYTE *tuple_data, struct DeviceTData *storage ); struct Resident *IfAmigaXIP( struct CardHandle *handle ); BOOL CardForceChange( void ); ULONG CardChangeCount( void ); ULONG CardInterface( void ); #endif