home *** CD-ROM | disk | FTP | other *** search
- #ifndef LIBRARIES_F1GP_H
- #define LIBRARIES_F1GP_H
- /*
- ** $VER: f1gp.h 35.2 (8.2.97)
- **
- ** f1gp.library definitions
- **
- ** (C) Copyright 1995-1997 Oliver Roberts
- ** All Rights Reserved
- */
-
- /*------------------------------------------------------------------------*/
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif /* EXEC_TYPES_H */
-
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif /* EXEC_LIBRARIES_H */
-
- /* Constants returned by f1gpDetect()
- */
- #define F1GPTYPE_STANDARD 1
- #define F1GPTYPE_WC 2
- #define F1GPTYPE_A600WWW 3
-
- /* Definition of the F1GP library base structure.
- ** Fields MUST not be modified by user programs, but they can be read.
- */
- struct F1GPBase {
- struct Library LibNode; /* Standard library node */
- LONG F1GPType; /* Current F1GP type - see constants above */
- ULONG HunkStart[4]; /* Address of each of F1GP's hunks */
- LONG Seg1; /* HunkStart[0] - 0x2c */
- LONG Seg3; /* HunkStart[2] - 0x4990c/49910/49920 */
- };
-
- #define F1GPNAME "f1gp.library"
-
- #endif /* LIBRARIES_F1GP_H */
-