~aleteoryx/sexchat

ref: a3400e0aa9f3b3835a0ba6312039ba515f6b8594 sexchat/src/common/sysinfo/sysinfo.h -rw-r--r-- 321 bytes
a3400e0aAleteoryx remove all mentions of struct session from server.c 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