1 /*****************************************************************************\ 2 * Tseng Labs ET6000, ET6100 and ET6300 graphics driver for BeOS 5. 3 * Copyright (c) 2003-2004, Evgeniy Vladimirovich Bobkov. 4 \*****************************************************************************/ 5 6 #ifndef _ET6000GLOBALDATA_H_ 7 #define _ET6000GLOBALDATA_H_ 8 9 #include "DriverInterface.h" 10 11 12 /*****************************************************************************/ 13 extern int fd; 14 extern ET6000SharedInfo *si; 15 extern area_id sharedInfoArea; 16 extern display_mode *et6000ModesList; 17 extern area_id et6000ModesListArea; 18 extern int accelerantIsClone; 19 extern volatile unsigned char *mmRegs; /* memory mapped registers */ 20 /*****************************************************************************/ 21 22 23 #endif /* _ET6000GLOBALDATA_H_ */ 24