blob: 13debcebc81293fbc90f3582b8da668b8b7bcde7 (
plain) (
tree)
|
|
// 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/cbasetypes.h"
struct s_homunculus;
void inter_homunculus_defaults(void);
struct inter_homunculus_interface {
int (*sql_init) (void);
void (*sql_final) (void);
int (*parse_frommap) (int fd);
};
struct inter_homunculus_interface *inter_homunculus;
#endif /* CHAR_INT_HOMUN_H */
|