~aleteoryx/sexchat

ref: bf788d753ac51adb7dae9b517b2a6a7190cc4d32 sexchat/src/common/sysinfo/sysinfo.h -rw-r--r-- 321 bytes
bf788d75Aleteoryx 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