~aleteoryx/sexchat

ref: 2f53a59a4d3899bcb83d4399e520f0472f12ccfa sexchat/src/common/sysinfo/sysinfo.h -rw-r--r-- 321 bytes
2f53a59aAleteoryx add msgid to xtext and scrollback 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#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