summaryrefslogtreecommitdiff
path: root/src/char/int_homun.h
blob: d5a35283f3cc88a0b3c8f60ce3ad4adb2e4c6b07 (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
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef CHAR_INT_HOMUN_H
#define CHAR_INT_HOMUN_H

#include "common/hercules.h"

/**
 * inter_homunculus interface
 **/
struct inter_homunculus_interface {
	int (*sql_init) (void);
	void (*sql_final) (void);
	int (*parse_frommap) (int fd);
};

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

HPShared struct inter_homunculus_interface *inter_homunculus;

#endif /* CHAR_INT_HOMUN_H */