home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / clib / CARDRES_PROTOS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  1.4 KB  |  41 lines

  1. #ifndef CLIB_CARDRES_PROTOS_H
  2. #define CLIB_CARDRES_PROTOS_H
  3. /*
  4. ** $VER: cardres_protos.h 1.1 (04.12.91)
  5. ** Includes Release 38.56
  6. **
  7. ** C prototypes. For use with 32 bit integers only.
  8. **
  9. ** (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. ** All Rights Reserved
  11. */
  12. #ifndef EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15. #ifndef EXEC_RESIDENT_H
  16. #include <exec/resident.h>
  17. #endif
  18. #ifndef RESOURCES_CARD_H
  19. #include <resources/card.h>
  20. #endif
  21. struct CardHandle *OwnCard( struct CardHandle *handle );
  22. void ReleaseCard( struct CardHandle *handle, unsigned long flags );
  23. struct CardMemoryMap *GetCardMap( void );
  24. BOOL BeginCardAccess( struct CardHandle *handle );
  25. BOOL EndCardAccess( struct CardHandle *handle );
  26. UBYTE ReadCardStatus( void );
  27. BOOL CardResetRemove( struct CardHandle *handle, unsigned long flag );
  28. UBYTE CardMiscControl( struct CardHandle *handle,
  29.  unsigned long control_bits );
  30. ULONG CardAccessSpeed( struct CardHandle *handle, unsigned long nanoseconds );
  31. LONG CardProgramVoltage( struct CardHandle *handle, unsigned long voltage );
  32. BOOL CardResetCard( struct CardHandle *handle );
  33. BOOL CopyTuple( struct CardHandle *handle, UBYTE *buffer,
  34.  unsigned long tuplecode, unsigned long size );
  35. ULONG DeviceTuple( UBYTE *tuple_data, struct DeviceTData *storage );
  36. struct Resident *IfAmigaXIP( struct CardHandle *handle );
  37. BOOL CardForceChange( void );
  38. ULONG CardChangeCount( void );
  39. ULONG CardInterface( void );
  40. #endif 
  41.