lsflib/include/cpuid.h
author Markus Bröker <mbroeker@largo.localnet>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 37 0fbbe329c3a2
parent 9 c3fecc82ade6
permissions -rw-r--r--
demos/parser * calc * c_compiler I want to rescue the history of the calc files... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/lsflib/include/cpuid.h
 * Copyright (C) 2008 Markus Broeker
 */

#ifndef __CPUID_H__
#define __CPUID_H__

#include <memory.h>

typedef unsigned long ULONG;

char *get_cpu_brand (int);
char *get_cpu_vendor (void);

ULONG get_cpu_function (ULONG, ULONG *, ULONG *, ULONG *, ULONG *);

#endif