mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-12 00:30:19 +00:00
Replaced glib string/util usage in the win32 sysinfo backend with local helpers, a small string builder, and Windows UTF-8 conversion, removing the glib dependency there.
14 lines
329 B
C
14 lines
329 B
C
#ifndef ZOITECHAT_SYSINFO_H
|
|
#define ZOITECHAT_SYSINFO_H
|
|
|
|
#include <stdint.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 (uint64_t *hdd_capacity_out, uint64_t *hdd_free_space_out);
|
|
char *sysinfo_get_gpu (void);
|
|
|
|
#endif
|