Merge "Make GlyphBufferData as another class" into devel/master
[platform/core/uifw/dali-adaptor.git] / third-party / windows-platform / dlfcn.cpp
1 #include <dlfcn.h>
2 #include <windows.h>
3
4 namespace
5 {
6   char DL_ERROR[2] = "";
7 }
8
9 bool dlclose( void* handle )
10 {
11   return true;
12 }
13
14 char* dlerror()
15 {
16   return DL_ERROR;
17 }
18
19 void* dlopen( const char *name, int mode )
20 {
21   const char* szStr = name;
22
23   return LoadLibrary( szStr );
24 }
25
26 void* dlsym( void *handle, const char *name )
27 {
28   return GetProcAddress( (HMODULE)handle, "CreateFeedbackPlugin" );
29 }