From 765841d4469226b26350e0c6b30b4e1e5e85e983 Mon Sep 17 00:00:00 2001 From: hasherezade Date: Wed, 1 Jul 2020 23:09:01 +0200 Subject: [PATCH] [FEATURE] In testload: added parameters descriptions --- testload/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testload/main.cpp b/testload/main.cpp index eab8a42..2c2ce04 100644 --- a/testload/main.cpp +++ b/testload/main.cpp @@ -13,7 +13,9 @@ int main(int argc, char *argv[]) #else std::cout << "For 32-bit DLLs.\n"; #endif - std::cout << "Args: " << std::endl; + std::cout << "Args: \n" + << ": the DLL converted by dll_to_exe\n" + << ": the Original Entry Point of your application (before the conversion to DLL)"<< std::endl; system("pause"); return 0; }