Merge "Make GlyphBufferData as another class" into devel/master
[platform/core/uifw/dali-adaptor.git] / third-party / windows-platform / dlfcn.h
1 #ifndef _DLFCN_INCLUDE_
2 #define _DLFCN_INCLUDE_
3
4 #undef PlaySound
5
6 #define RTLD_NOW      0
7 #define RTLD_GLOBAL   1
8 #define RTLD_LAZY     2
9
10 bool dlclose( void* handle );
11
12 char* dlerror();
13
14 void* dlopen( const char *name, int mode );
15
16 void* dlsym( void *handle, const char *name );
17
18 #endif