summary refs log tree commit diff stats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/util.c18
-rw-r--r--src/common/util.h1
2 files changed, 19 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 67168a5f..5677e82a 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -647,6 +647,24 @@ get_mhz (void)
 	return 0;	/* fails on Win9x */
 }
 
+int
+get_cpu_arch (void)
+{
+	SYSTEM_INFO si;
+	unsigned short int cpu_arch;
+
+	GetSystemInfo (&si);
+
+	if (si.wProcessorArchitecture == 9)
+	{
+		return 64;
+	}
+	else
+	{
+		return 86;
+	}
+}
+
 char *
 get_cpu_str (void)
 {
diff --git a/src/common/util.h b/src/common/util.h
index cd9e1fff..92d2a843 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -45,6 +45,7 @@ char *errorstring (int err);
 int waitline (int sok, char *buf, int bufsize, int);
 #ifdef WIN32
 int waitline2 (GIOChannel *source, char *buf, int bufsize);
+int get_cpu_arch (void);
 #else
 #define waitline2(source,buf,size) waitline(serv->childread,buf,size,0)
 #endif