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