aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/net/net.cpp
blob: 940b2398b70b68d189dce82f54308921fb9b42dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "Net.h"

namespace jin
{
	namespace net
	{

		bool Net::initSystem(const SettingBase* setting)
		{
		#ifdef _WIN32
		#if LIBJIN_NET_TEKCOS 
			tk_init();
		#endif 
		#endif
			return true;
		}

		void Net::quitSystem()
		{

		}

	} // namespace net
} // namespace jin