mirror of
https://github.com/anope/anope.git
synced 2026-06-25 16:26:37 +02:00
16 lines
215 B
C
16 lines
215 B
C
#ifndef MODULE_H
|
|
#define MODULE_H
|
|
|
|
#include "services.h"
|
|
#include "commands.h"
|
|
#include "modules.h"
|
|
|
|
#if GETTEXT_FOUND
|
|
# include <libintl.h>
|
|
# define _(x) gettext(x)
|
|
#else
|
|
# define _(x) x
|
|
#endif
|
|
|
|
#endif // MODULE_H
|