lsflib/include/cpuid.h
changeset 6 c3dc3eb3b541
child 9 c3fecc82ade6
equal deleted inserted replaced
5:d752cbe8208e 6:c3dc3eb3b541
       
     1 #ifndef __CPUID_H__
       
     2 #define __CPUID_H__
       
     3 
       
     4 #include <memory.h>
       
     5 
       
     6 typedef unsigned long ULONG;
       
     7 
       
     8 char *get_cpu_brand (int);
       
     9 char *get_cpu_vendor (void);
       
    10 
       
    11 ULONG get_cpu_function (ULONG, ULONG *, ULONG *, ULONG *, ULONG *);
       
    12 
       
    13 #endif