Files
zoitechat/src/common/sysinfo/sysinfo.h
deepend d4134c94b3 Swapped glib integer types in the sysinfo interface for standard stdint types to remove glib coupling in the header.
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.
2026-01-25 23:32:33 -07:00

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