diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-02-10 02:59:58 +0000 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-02-10 02:59:58 +0000 |
commit | bef2f446282ed498a800c35374b7e2c6abfcdb4c (patch) | |
tree | 661d85ec94050ebec5fdbe0aa3b0fad133ce347e | |
parent | 2ef1b924c158f86e06d62a5ece14e7db3e8470cf (diff) | |
download | dlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.tar.gz dlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.tar.bz2 dlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.zip |
README: Markdown-ize and add rand() stuff
-rw-r--r-- | README | 34 |
1 files changed, 32 insertions, 2 deletions
@@ -1,11 +1,41 @@ | |||
1 | dlfcn-win32 | ||
2 | =========== | ||
3 | |||
1 | dlfcn-win32 is an implementation of dlfcn for Windows. | 4 | dlfcn-win32 is an implementation of dlfcn for Windows. |
2 | 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 | |||
3 | It follows the standard as described here: | 12 | It follows the standard as described here: |
13 | |||
4 | http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html | 14 | http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html |
5 | http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html | 15 | http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html |
6 | http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html | 16 | http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html |
7 | http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html | 17 | http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html |
8 | http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html | 18 | http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html |
9 | 19 | ||
10 | Written by Ramiro Polla | 20 | Author |
11 | Released under the LGPL \ No newline at end of file | 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 | ||