view mp3lib/d_cpu.h @ 3728:499ce786c30d

As nobody fixed this yet: "tv.c: In function stream_open_tv': tv.c:107: warning: return' with no value, in function returning non-void" According to libmpdemux/open.c 0 is an error so I guess it should return 0 if it fails :)
author pl
date Tue, 25 Dec 2001 11:45:04 +0000
parents 03b7e2955a20
children
line wrap: on
line source


// --------------------------------------------------------------------------
//  Cpu function detect by Pontscho/fresh!mindworkz
// --------------------------------------------------------------------------

#ifndef __MY_CPUIDENT
#define __MY_CPUIDENT

unsigned int _CpuID;
unsigned int _i586;
unsigned int _3dnow;
unsigned int _isse;
unsigned int _has_mmx;

extern unsigned long CpuDetect( void );
extern unsigned long ipentium( void );
extern unsigned long isse( void );
extern unsigned long a3dnow( void );

#endif