equal
deleted
inserted
replaced
|
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 |