summaryrefslogtreecommitdiff
path: root/src/common/sysinfo.h
blob: 7d47398a3ae17960571c701a4fd85bdf303c11f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Base Author: Haru @ http://herc.ws

#ifndef COMMON_SYSINFO_H
#define COMMON_SYSINFO_H

/**
 * Provides various bits of information about the system Hercules is running on
 * (note: on unix systems, to avoid runtime detection, most of the data is
 * cached at compile time)
 */

#include "common/hercules.h"

struct sysinfo_private;

/**
 * sysinfo.c interface
 **/
struct sysinfo_interface {
	struct sysinfo_private *p;

#if defined(WIN32) && !defined(__CYGWIN__)
	long (*getpagesize) (void);
#else
	int (*getpagesize) (void);
#endif
	const char *(*platform) (void);
	const char *(*osversion) (void);
	const char *(*cpu) (void);
	int (*cpucores) (void);
	const char *(*arch) (void);
	bool (*is64bit) (void);
	const char *(*compiler) (void);
	const char *(*cflags) (void);
	const char *(*vcstype) (void);
	int (*vcstypeid) (void);
	const char *(*vcsrevision_src) (void);
	const char *(*vcsrevision_scripts) (void);
	void (*vcsrevision_reload) (void);
	bool (*is_superuser) (void);
	void (*init) (void);
	void (*final) (void);
};

#ifdef HERCULES_CORE
void sysinfo_defaults(void);
#endif // HERCULES_CORE

HPShared struct sysinfo_interface *sysinfo;

#endif /* COMMON_SYSINFO_H */