c.sexchat/src/common/sysinfo/sysinfo.h
Arnavion 7f1ee9dad0 common: Moved some functions over from plugins/sysinfo that are useful for the rest of HC.
OS name, CPU, GPU, HDD info and build arch are now all available within core HC. OS name and build arch are used in the About dialog.
2015-10-12 19:20:53 +02:00

13 lines
321 B
C

#ifndef HEXCHAT_SYSINFO_H
#define HEXCHAT_SYSINFO_H
#include <glib.h>
int sysinfo_get_cpu_arch (void);
int sysinfo_get_build_arch (void);
char *sysinfo_get_cpu (void);
char *sysinfo_get_os (void);
void sysinfo_get_hdd_info (guint64 *hdd_capacity_out, guint64 *hdd_free_space_out);
char *sysinfo_get_gpu (void);
#endif