home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / cardres_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  1.4 KB  |  49 lines

  1. #ifndef  CLIB_CARDRES_PROTOS_H
  2. #define  CLIB_CARDRES_PROTOS_H
  3.  
  4. /*
  5. **    $VER: cardres_protos.h 40.1 (17.5.1996)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20. #ifndef  EXEC_RESIDENT_H
  21. #include <exec/resident.h>
  22. #endif
  23. #ifndef  RESOURCES_CARD_H
  24. #include <resources/card.h>
  25. #endif
  26. struct CardHandle *OwnCard( struct CardHandle *handle );
  27. VOID ReleaseCard( struct CardHandle *handle, ULONG flags );
  28. struct CardMemoryMap *GetCardMap( VOID );
  29. BOOL BeginCardAccess( struct CardHandle *handle );
  30. BOOL EndCardAccess( struct CardHandle *handle );
  31. UBYTE ReadCardStatus( VOID );
  32. BOOL CardResetRemove( struct CardHandle *handle, ULONG flag );
  33. UBYTE CardMiscControl( struct CardHandle *handle, ULONG control_bits );
  34. ULONG CardAccessSpeed( struct CardHandle *handle, ULONG nanoseconds );
  35. LONG CardProgramVoltage( struct CardHandle *handle, ULONG voltage );
  36. BOOL CardResetCard( struct CardHandle *handle );
  37. BOOL CopyTuple( CONST struct CardHandle *handle, UBYTE *buffer, ULONG tuplecode, ULONG size );
  38. ULONG DeviceTuple( CONST UBYTE *tuple_data, struct DeviceTData *storage );
  39. struct Resident *IfAmigaXIP( CONST struct CardHandle *handle );
  40. BOOL CardForceChange( VOID );
  41. ULONG CardChangeCount( VOID );
  42. ULONG CardInterface( VOID );
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif /* __cplusplus */
  47.  
  48. #endif   /* CLIB_CARDRES_PROTOS_H */
  49.