aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-08-19 11:20:31 -0700
committerTimothy Gu <timothygu99@gmail.com>2014-08-19 11:20:31 -0700
commitcf56306383935c6123f1ab70fcb73c850e301819 (patch)
tree4a7757a7096fee15f0ec2c6b9f3c834b751cc9d5 /README
parent4c3754da8c3edb8d6c9c1de422cc54329ccf3645 (diff)
downloaddlfcn-win32-cf56306383935c6123f1ab70fcb73c850e301819.tar.gz
dlfcn-win32-cf56306383935c6123f1ab70fcb73c850e301819.tar.bz2
dlfcn-win32-cf56306383935c6123f1ab70fcb73c850e301819.zip
Rename README to README.mdv1.0.0
Diffstat (limited to 'README')
-rw-r--r--README41
1 files changed, 0 insertions, 41 deletions
diff --git a/README b/README
deleted file mode 100644
index f726ec1..0000000
--- a/README
+++ /dev/null
@@ -1,41 +0,0 @@
1dlfcn-win32
2===========
3
4dlfcn-win32 is an implementation of dlfcn for Windows.
5
6dlfcn is a set of functions that allows runtime dynamic library loading. It is
7standardized in the POSIX. Windows also provide similar routines, but not in a
8POSIX-compatible way. This library attempts to implement a wrapper around the
9Windows functions to make programs written for POSIX that use dlfcn work in
10Windows without any modifications.
11
12It follows the standard as described here:
13
14http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
15http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
16http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
17http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
18http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
19
20Author
21------
22
23Written by Ramiro Polla in 2007.
24Maintained by Tiancheng "Timothy" Gu from 2013 to 2014.
25
26License
27-------
28
29dlfcn-win32 is free software; you can redistribute it and/or
30modify it under the terms of the GNU Lesser General Public
31License as published by the Free Software Foundation; either
32version 2.1 of the License, or (at your option) any later version.
33
34dlfcn-win32 is distributed in the hope that it will be useful,
35but WITHOUT ANY WARRANTY; without even the implied warranty of
36MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
37Lesser General Public License for more details.
38
39You should have received a copy of the GNU Lesser General Public
40License along with dlfcn-win32; if not, write to the Free Software
41Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA