- Timestamp:
- Mar 2, 2000, 2:22:03 PM (25 years ago)
- Location:
- trunk/src/opengl/glide/swlibs/pcilib
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/glide/swlibs/pcilib/fxos2.h
r2887 r2967 22 22 #define _FXOS2_H_ 23 23 24 //#define FX_MAJOR_VER 0 25 //#define FX_MINOR_VER 0 26 27 //extern FxU32 PCI_VENDOR_ID_LINUX; 28 //extern FxU32 PCI_DEVICE_ID_LINUX; 29 //extern FxU32 PCI_COMMAND_LINUX; 30 //extern FxU32 PCI_BASE_ADDRESS_0_LINUX; 31 //extern FxU32 SST1_PCI_INIT_ENABLE_LINUX; 32 //extern FxU32 SST1_PCI_BUS_SNOOP0_LINUX; 33 //extern FxU32 SST1_PCI_BUS_SNOOP1_LINUX; 24 #ifdef __cplusplus 25 extern "C" { 26 #endif 34 27 35 28 FxBool 36 29 hasDev3DfxOS2(void); 37 30 38 FxBool39 pciInitializeOS2(void);40 41 31 FxBool 42 32 pciCloseOS2( void ); 43 44 FxU845 pioInByte(unsigned short port);46 47 FxU1648 pioInWord(unsigned short port);49 50 FxU3251 pioInLong(unsigned short port);52 53 FxBool54 pioOutByte(unsigned short port, FxU8 data);55 56 FxBool57 pioOutWord(unsigned short port, FxU16 data);58 59 FxBool60 pioOutLong(unsigned short port, FxU32 data);61 33 62 34 FxBool … … 75 47 pciUpdateRegisterOS2(FxU32 cmd, FxU32 data, FxU32 size, FxU32 device); 76 48 49 #ifdef __cplusplus 50 } 77 51 #endif 52 53 #endif -
trunk/src/opengl/glide/swlibs/pcilib/makefile
r2887 r2967 1 # $Id: makefile,v 1. 1 2000-02-25 00:33:57sandervl Exp $1 # $Id: makefile,v 1.2 2000-03-02 13:22:02 sandervl Exp $ 2 2 # 3 3 # PD-Win32 API … … 16 16 !include ..\..\sst1\3dfx.mak 17 17 18 CINCLUDE=-I..\..\sst1\incsrc;..\fxmisc;..\..\sst1\init\initvg;..\..\sst1\glide;..\..\sst1\texus;..\..\sst1\init 18 CINCLUDE=-I..\..\sst1\incsrc;..\fxmisc;..\..\sst1\init\initvg;..\..\sst1\glide;..\..\sst1\texus;..\..\sst1\init;$(PDWIN32_INCLUDE) 19 19 20 20 CFLAGS = $(CFLAGS) $(CINCLUDE) -
trunk/src/opengl/glide/swlibs/pcilib/pcilib.h
r2887 r2967 19 19 ** 20 20 ** 21 ** $Revision: 1. 1$22 ** $Date: 2000-0 2-25 00:33:57$21 ** $Revision: 1.2 $ 22 ** $Date: 2000-03-02 13:22:03 $ 23 23 ** 24 24 */ … … 118 118 * setup the platform function pointer struct. 119 119 */ 120 extern FxBool pciPlatformInit(void); 120 121 #ifdef __cplusplus 122 extern "C" { 123 #endif 124 125 FxBool pciPlatformInit(void); 126 127 #ifdef __cplusplus 128 } 129 #endif 121 130 122 131 #endif /* _PCILIB_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.