From c60685fcad4911c22af085c816583ae3b9ab0e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 12 Jan 2003 16:36:30 +0000 Subject: [PATCH] Fixed parameter for get_nth_image_symbol(). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2429 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/user_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/kernel/user_runtime.h b/headers/private/kernel/user_runtime.h index 67f08ef451..de020ae5de 100755 --- a/headers/private/kernel/user_runtime.h +++ b/headers/private/kernel/user_runtime.h @@ -17,7 +17,7 @@ struct rld_export status_t (*unload_add_on)(image_id imageID); status_t (*get_image_symbol)(image_id imageID, char const *symbolName, int32 symbolType, void **_location); - status_t (*get_nth_image_symbol)(image_id imageID, int32 num, char const *symbolName, + status_t (*get_nth_image_symbol)(image_id imageID, int32 num, char *symbolName, int32 *nameLength, int32 *symbolType, void **_location); };