summaryrefslogtreecommitdiff
path: root/src/base/modules.c
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-03 18:46:22 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-08-03 18:46:22 +0000
commitb5723cbd822b2359850c121ca69e682a607d91bd (patch)
treec731a5c07d6188b1bdce6e90b5ac02e35800716d /src/base/modules.c
parent00c9cebac684c42741e924d11038d5591e87dacd (diff)
- pridany kapov patch na klavesy
- widget na nastavovanie klaves sa rozsvieti, ked je aktivny git-svn-id: http://opensvn.csie.org/tuxanci_ng@189 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/base/modules.c')
-rwxr-xr-xsrc/base/modules.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/modules.c b/src/base/modules.c
index 13b0ff2..1443f21 100755
--- a/src/base/modules.c
+++ b/src/base/modules.c
@@ -15,7 +15,7 @@
#include "arena.h"
#include "arenaFile.h"
#include "proto.h"
-#include "exportFunction.h"
+#include "shareFunction.h"
#ifndef PUBLIC_SERVER
#include "interface.h"
@@ -31,8 +31,8 @@ static export_fce_t export_fce =
.fce_getImage = getImage,
#endif
.fce_loadDepModule = loadDepModule,
- .fce_addToExportFce = addToExportFce,
- .fce_getExportFce = getExportFce,
+ .fce_addToShareFce = addToShareFce,
+ .fce_getShareFce = getShareFce,
.fce_getValue = getArenaValue,
.fce_getNetTypeGame = getNetTypeGame,
@@ -210,7 +210,7 @@ static int destroyModule(module_t *p)
void initModule()
{
listModule = newList();
- initExortFunction();
+ initShareFunction();
}
int isModuleLoaded(char *name)
@@ -341,5 +341,5 @@ int recvMsgModule(char *msg)
void quitModule()
{
destroyListItem(listModule, destroyModule);
- quitExportFunction();
+ quitShareFunction();
}