summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/libuv/docs/src/dll.rst
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/libuv/docs/src/dll.rst')
-rw-r--r--3rdparty/libuv/docs/src/dll.rst44
1 files changed, 0 insertions, 44 deletions
diff --git a/3rdparty/libuv/docs/src/dll.rst b/3rdparty/libuv/docs/src/dll.rst
deleted file mode 100644
index fb13f908159..00000000000
--- a/3rdparty/libuv/docs/src/dll.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-
-.. _dll:
-
-Shared library handling
-=======================
-
-libuv provides cross platform utilities for loading shared libraries and
-retrieving symbols from them, using the following API.
-
-
-Data types
-----------
-
-.. c:type:: uv_lib_t
-
- Shared library data type.
-
-
-Public members
-^^^^^^^^^^^^^^
-
-N/A
-
-
-API
----
-
-.. c:function:: int uv_dlopen(const char* filename, uv_lib_t* lib)
-
- Opens a shared library. The filename is in utf-8. Returns 0 on success and
- -1 on error. Call :c:func:`uv_dlerror` to get the error message.
-
-.. c:function:: void uv_dlclose(uv_lib_t* lib)
-
- Close the shared library.
-
-.. c:function:: int uv_dlsym(uv_lib_t* lib, const char* name, void** ptr)
-
- Retrieves a data pointer from a dynamic library. It is legal for a symbol
- to map to NULL. Returns 0 on success and -1 if the symbol was not found.
-
-.. c:function:: const char* uv_dlerror(const uv_lib_t* lib)
-
- Returns the last uv_dlopen() or uv_dlsym() error message.
a> 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205