aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-02-10 02:59:58 +0000
committerTimothy Gu <timothygu99@gmail.com>2014-02-10 02:59:58 +0000
commitbef2f446282ed498a800c35374b7e2c6abfcdb4c (patch)
tree661d85ec94050ebec5fdbe0aa3b0fad133ce347e
parent2ef1b924c158f86e06d62a5ece14e7db3e8470cf (diff)
downloaddlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.tar.gz
dlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.tar.bz2
dlfcn-win32-bef2f446282ed498a800c35374b7e2c6abfcdb4c.zip
README: Markdown-ize and add rand() stuff
-rw-r--r--README34
1 files changed, 32 insertions, 2 deletions
diff --git a/README b/README
index 192480d..f726ec1 100644
--- a/README
+++ b/README
@@ -1,11 +1,41 @@
1dlfcn-win32
2===========
3
1dlfcn-win32 is an implementation of dlfcn for Windows. 4dlfcn-win32 is an implementation of dlfcn for Windows.
2 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
3It follows the standard as described here: 12It follows the standard as described here:
13
4http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html 14http://www.opengroup.org/onlinepubs/009695399/basedefs/dlfcn.h.html
5http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html 15http://www.opengroup.org/onlinepubs/009695399/functions/dlerror.html
6http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html 16http://www.opengroup.org/onlinepubs/009695399/functions/dlsym.html
7http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html 17http://www.opengroup.org/onlinepubs/009695399/functions/dlclose.html
8http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html 18http://www.opengroup.org/onlinepubs/009695399/functions/dlopen.html
9 19
10Written by Ramiro Polla 20Author
11Released under the LGPL \ No newline at end of file 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