From 89a56ac3e136bb297e17fd6aa274150658f280c0 Mon Sep 17 00:00:00 2001 From: Matt Woodrow Date: Thu, 3 Jul 2008 06:52:28 +0000 Subject: [PATCH] Output now shows params for overloaded functions --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402336 --- tools/Vtable scanner/main.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tools/Vtable scanner/main.cpp b/tools/Vtable scanner/main.cpp index 35b18470..693a459b 100644 --- a/tools/Vtable scanner/main.cpp +++ b/tools/Vtable scanner/main.cpp @@ -77,7 +77,15 @@ int main(int argc, char **argv) if (ret) { - printf("%s - Win: %i Linux : %i\n", argv[3], offsets.windows_offset, offsets.linux_offset); + if (params != NULL) + { + printf("%s%s - Win: %i Linux : %i\n", argv[3], params, offsets.windows_offset, offsets.linux_offset); + } + else + { + printf("%s - Win: %i Linux : %i\n", argv[3], offsets.windows_offset, offsets.linux_offset); + } + return 0; }