lsflib/include/cpuid.h
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 05 Mar 2010 22:03:56 +0100
changeset 114 6f6850407ccf
parent 9 c3fecc82ade6
permissions -rw-r--r--
buffer overflow in utf8 and ncurses demo the buffer for wctomb was too small 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