mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-27 22:56:37 +02:00
5849092137
with a new module API. Is currently not autoconf'ied, makefile'ed, etc. May the screaming commence.
17 lines
266 B
Cheetah
17 lines
266 B
Cheetah
|
|
extern "C" const char *_MODULE__getVersion()
|
|
{
|
|
return _MODULE__Module::getVersion();
|
|
}
|
|
|
|
extern "C" const char *_MODULE__getName()
|
|
{
|
|
return _MODULE__Module::getName();
|
|
}
|
|
|
|
extern "C" const char *_MODULE__getCopyright()
|
|
{
|
|
return _MODULE__Module::getCopyright();
|
|
}
|
|
|