summaryrefslogtreecommitdiff
path: root/src/base/shareFunction.h
blob: 04f0af3ee04d77b803a5e32ba9487514b2320927 (plain)
1
2
3
4
5
6
7
8
9
10

#ifndef SHARE_FUNCTION_H
	#define SHARE_FUNCTION_H

	extern void initShareFunction();
	extern void addToShareFce(char *name, void *function);
	extern void* getShareFce(char *name);
	extern void quitShareFunction();
#endif