diff tango/tango/stdc/posix/dlfcn.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tango/tango/stdc/posix/dlfcn.d	Fri Jan 11 17:57:40 2008 +0100
@@ -0,0 +1,53 @@
+/**
+ * D header file for POSIX.
+ *
+ * Copyright: Public Domain
+ * License:   Public Domain
+ * Authors:   Sean Kelly
+ * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
+ */
+module tango.stdc.posix.dlfcn;
+
+private import tango.stdc.posix.config;
+
+extern (C):
+
+//
+// XOpen (XSI)
+//
+/*
+RTLD_LAZY
+RTLD_NOW
+RTLD_GLOBAL
+RTLD_LOCAL
+
+int   dlclose(void*);
+char* dlerror();
+void* dlopen(char*, int);
+void* dlsym(void*, char*);
+*/
+
+version( linux )
+{
+    const RTLD_LAZY     = 0x00001;
+    const RTLD_NOW      = 0x00002;
+    const RTLD_GLOBAL   = 0x00100;
+    const RTLD_LOCAL    = 0x00000;
+
+    int   dlclose(void*);
+    char* dlerror();
+    void* dlopen(char*, int);
+    void* dlsym(void*, char*);
+}
+else version( darwin )
+{
+    const RTLD_LAZY     = 0x00001;
+    const RTLD_NOW      = 0x00002;
+    const RTLD_GLOBAL   = 0x00100;
+    const RTLD_LOCAL    = 0x00000;
+
+    int   dlclose(void*);
+    char* dlerror();
+    void* dlopen(char*, int);
+    void* dlsym(void*, char*);
+}