[docs] Reference g_module_open instead of dlopen

dlopen() is not cross platform, it's better to mention
g_module_open everywhere as that's actually what we call internally.
This commit is contained in:
Johan Dahlin
2010-05-19 13:53:48 -03:00
parent 456379be29
commit 3e473d93ca
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ g_invoke_error_quark (void)
* argument lists. This function uses dlsym() to obtain a pointer
* to the function, so the library or shared object containing the
* described function must either be linked to the caller, or must
* have been dlopen()<!-- -->ed before calling this function.
* have been g_module_symbol()<!-- -->ed before calling this function.
*
* Returns: %TRUE if the function has been invoked, %FALSE if an
* error occurred.