Get rid of stdio.h and use only iostream. Or get rid of iostream library.
change <time.h> into <ctime> and <stdio.h> into <cstdio>.
Start using namespace.
To improve performance you could you use #define WIN32_LEAN_AND_MEAN before #include <windows.h>
Everything stated above has been changed in our newest version.
http://myhook.svn.sourceforge.net/viewvc/myhook/1.1%20wip/myhook.cpp?revision=6&view=markup
I will add the #define WIN32_LEAN_AND_MEAN
lean and mean can be established as a compiler arg as well. I use that when I compile, it just was not in the source.
Log in to post a comment.
Everything stated above has been changed in our newest version.
http://myhook.svn.sourceforge.net/viewvc/myhook/1.1%20wip/myhook.cpp?revision=6&view=markup
I will add the #define WIN32_LEAN_AND_MEAN
lean and mean can be established as a compiler arg as well.
I use that when I compile, it just was not in the source.