[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-adaptor.git] / dali-windows-backend / ExInclude / dlfcn.h
1 #ifndef _DLFCN_INCLUDE_\r
2 #define _DLFCN_INCLUDE_\r
3 \r
4 #undef PlaySound\r
5 \r
6 #define RTLD_NOW      0\r
7 #define RTLD_GLOBAL   1\r
8 #define RTLD_LAZY     2\r
9 \r
10 bool dlclose( void* handle );\r
11 \r
12 char* dlerror();\r
13 \r
14 void* dlopen( const char *name, int mode );\r
15 \r
16 void* dlsym( void *handle, const char *name );\r
17 \r
18 #endif