annotate mp3lib/d_cpu.h @ 1101:961f53221ffc
Code cleanup and fix missing config.h and use femms on K6 2/2+/3.
author |
atmosfear |
date |
Mon, 11 Jun 2001 17:43:15 +0000 |
parents |
a1fe76547e8f |
children |
03b7e2955a20 |
rev |
line source |
1
|
1
|
|
2 // --------------------------------------------------------------------------
|
|
3 // Cpu function detect by Pontscho/fresh!mindworkz
|
|
4 // --------------------------------------------------------------------------
|
|
5
|
|
6 #ifndef __MY_CPUIDENT
|
|
7 #define __MY_CPUIDENT
|
|
8
|
|
9 unsigned int _CpuID;
|
|
10 unsigned int _i586;
|
|
11 unsigned int _3dnow;
|
|
12
|
|
13 extern unsigned long CpuDetect( void );
|
|
14 extern unsigned long ipentium( void );
|
|
15 extern unsigned long a3dnow( void );
|
|
16
|
302
|
17 #endif
|
|
18
|