From da0bba5322e3dccb8ff7853da4b089fe5055c357 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sun, 19 Feb 2012 08:11:44 +0000 Subject: [PATCH] Evil: fix doc SVN revision: 68120 --- legacy/evil/src/lib/dlfcn/dlfcn.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/legacy/evil/src/lib/dlfcn/dlfcn.h b/legacy/evil/src/lib/dlfcn/dlfcn.h index 1035548aea..610331b702 100644 --- a/legacy/evil/src/lib/dlfcn/dlfcn.h +++ b/legacy/evil/src/lib/dlfcn/dlfcn.h @@ -94,7 +94,7 @@ struct Dl_info }; /** - * Map a specified executable module (either a .dll or .exe file) + * @brief Map a specified executable module (either a .dll or .exe file) * into the address space of the user process. * * @param path Name of the module. @@ -155,7 +155,7 @@ struct Dl_info EAPI void *dlopen(const char* path, int mode); /** - * Close a dynamic-link library. + * @brief Close a dynamic-link library. * * @param handle Handle that references a dynamic-link library. * @return O on sucess, -1 otherwise. @@ -179,7 +179,7 @@ EAPI void *dlopen(const char* path, int mode); EAPI int dlclose(void* handle); /** - * Get the address of a symbol. + * @brief Get the address of a symbol. * * @param handle Handle that references a dynamic-link library. * @param symbol @c NULL-terminated string. @@ -203,7 +203,7 @@ EAPI int dlclose(void* handle); EAPI void *dlsym(void* handle, const char* symbol); /** - * Get the location of the current process (.exe) + * @brief Get the location of the current process (.exe) * * @param addr Unused. * @param info Pointer to the Dl_info to fill. @@ -227,7 +227,7 @@ EAPI void *dlsym(void* handle, const char* symbol); EAPI int dladdr (const void *addr, Dl_info *info); /** - * Get diagnostic information + * @brief Get diagnostic information * * @return A @c NULL-terminated string if an error occured, @c NULL * otherwise.