mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 22:50:38 +03:00
phobos 0.126
This commit is contained in:
parent
eb9c6b12e3
commit
ccbb884d7d
21 changed files with 739 additions and 604 deletions
|
@ -323,3 +323,17 @@ extern(C)
|
|||
}
|
||||
}
|
||||
|
||||
extern (C)
|
||||
{
|
||||
/* From <dlfcn.h>
|
||||
* See http://www.opengroup.org/onlinepubs/007908799/xsh/dlsym.html
|
||||
*/
|
||||
|
||||
const int RTLD_NOW = 0x00002; // Correct for Red Hat 8
|
||||
|
||||
void* dlopen(char* file, int mode);
|
||||
int dlclose(void* handle);
|
||||
void* dlsym(void* handle, char* name);
|
||||
char* dlerror();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue