blob: 594bb7f0021681b9ac3009c1b31ec4d1a564b7ec (
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
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
#ifndef CHAR_HPMCHAR_H
#define CHAR_HPMCHAR_H
#ifndef HERCULES_CORE
#error You should never include HPMchar.h from a plugin.
#endif
#include "common/cbasetypes.h"
#include "common/HPM.h"
struct hplugin;
bool HPM_char_grabHPData(struct HPDataOperationStorage *ret, enum HPluginDataTypes type, void *ptr);
void HPM_char_plugin_load_sub(struct hplugin *plugin);
void HPM_char_do_final(void);
void HPM_char_do_init(void);
#endif /* CHAR_HPMCHAR_H */
|