Skip to content

Commit

Permalink
[FEATURE] In testload: added parameters descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jul 1, 2020
1 parent 0c6745a commit 765841d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testload/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ int main(int argc, char *argv[])
#else
std::cout << "For 32-bit DLLs.\n";
#endif
std::cout << "Args: <dll> <Entry Point RVA>" << std::endl;
std::cout << "Args: <dll> <Entry Point RVA>\n"
<< "<dll>: the DLL converted by dll_to_exe\n"
<< "<Entry Point RVA>: the Original Entry Point of your application (before the conversion to DLL)"<< std::endl;
system("pause");
return 0;
}
Expand Down

0 comments on commit 765841d

Please sign in to comment.