	IFND LIBRARIES_F1GP_I
LIBRARIES_F1GP_I SET 1
**
**	$VER: f1gp.i 35.4 (22.8.97)
**
**	f1gp.library definitions
**
**	(C) Copyright 1995-1997 Oliver Roberts
**	All Rights Reserved
**

   IFND    EXEC_TYPES_I
   include 'exec/types.i'
   ENDC

   IFND    EXEC_LIBRARIES_I
   include 'exec/libraries.i'
   ENDC

** Constants returned by f1gpDetect()
**
F1GPTYPE_STANDARD	equ	1
F1GPTYPE_WC		equ	2
F1GPTYPE_A600WWW	equ	3

** Definition of the F1GP library base structure.
** Fields MUST not be modified by user programs, but they can be read.
**
   STRUCTURE F1GPBase,LIB_SIZE
	LONG    F1GPType	 ; Current F1GP type - see constants above
	STRUCT  HunkStart,4*4	 ; Address of each of F1GP's hunks
	LONG    Seg1		 ; HunkStart[0] - 0x2c
	LONG    Seg3		 ; HunkStart[2] - 0x4990c/49910/49920
	LABEL   F1GPBase_SIZE

F1GPNAME	MACRO
		DC.B "f1gp.library",0
		ENDM

   ENDC		; LIBRARIES_F1GP_I
