view cpudetect.h @ 2996:b27e7c3158ab

fixed win32/xanim support on --target=i{4-6}86 pl : - are you sure the other "i386"-only checks are ok? - X libraries get included (-lX11 etc) when I say --disable-x11, pls check Besides that, now it compiles static binary (with all my --disable-blah switches)
author gabucino
date Mon, 19 Nov 2001 10:37:48 +0000
parents 456e22bfb147
children 3164eaa93396
line wrap: on
line source

#ifdef ARCH_X86

#define CPUTYPE_I386	3
#define CPUTYPE_I486	4
#define CPUTYPE_I586	5
#define CPUTYPE_I686    6

typedef struct cpucaps_s {
	int cpuType;
	int hasMMX;
	int hasMMX2;
	int has3DNow;
	int has3DNowExt;
	int hasSSE;
	int hasSSE2;
} CpuCaps;

extern CpuCaps gCpuCaps;

void GetCpuCaps(CpuCaps *caps);

/* returned value is malloc()'ed so free() it after use */
char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]);

#endif /* ARCH_X86 */