Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

bind.c (645B)


      1 #include "c.h"
      2 extern Interface alphaIR;
      3 extern Interface mipsebIR, mipselIR;
      4 extern Interface sparcIR, solarisIR;
      5 extern Interface x86IR, x86linuxIR;
      6 extern Interface symbolicIR, symbolic64IR;
      7 extern Interface nullIR;
      8 extern Interface bytecodeIR;
      9 Binding bindings[] = {
     10 	"alpha/osf",     &alphaIR,
     11 	"mips/irix",     &mipsebIR,
     12 	"mips/ultrix",   &mipselIR,
     13 	"sparc/sun",     &sparcIR,
     14 	"sparc/solaris", &solarisIR,
     15 	"x86/win32",	 &x86IR,
     16 	"x86/linux",	 &x86linuxIR,
     17 	"symbolic/osf",  &symbolic64IR,
     18 	"symbolic/irix", &symbolicIR,
     19 	"symbolic",      &symbolicIR,
     20 	"null",          &nullIR,
     21 	"bytecode",      &bytecodeIR,
     22 	NULL,            NULL
     23 };