summaryrefslogtreecommitdiff
path: root/tools/win32build/cpuid/cpuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/win32build/cpuid/cpuid.h')
-rw-r--r--tools/win32build/cpuid/cpuid.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/win32build/cpuid/cpuid.h b/tools/win32build/cpuid/cpuid.h
deleted file mode 100644
index dc6d2933c..000000000
--- a/tools/win32build/cpuid/cpuid.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef _GABOU_CPUID_H
-#define _GABOU_CPUID_H
-
-#include <stdlib.h>
-
-#define CPUID_VENDOR_STRING_LEN 12
-
-struct _cpu_caps {
- int has_cpuid;
- int has_mmx;
- int has_sse;
- int has_sse2;
- int has_sse3;
- char vendor[CPUID_VENDOR_STRING_LEN+1];
-};
-typedef struct _cpu_caps cpu_caps_t;
-
-int cpuid_get_caps(cpu_caps_t *cpuinfo);
-
-#endif