PDA

View Full Version : Free Windows C compiler and API documentation


Joe Forster/STA
10-08-2004, 06:20
Hi guys,

Just wanted to provide the technical people with some links to useful information:

- For a free Windows C/C++ compiler, grab MinGW from http://www.mingw.org/ . It is light weight and it can compile native 32-bit Windows executables. (I use it for small console programs, Unix-style pipe stages.) Unlike CygWin, which uses a custom DLL, it uses the Microsoft Visual C++ run-time library, available at http://support.microsoft.com/default.aspx?scid=kb;en-us;259403 .

- For a documentation of the Win32 API, see the "Windows API documentation" at http://www.mingw.org/docs.shtml#win32api . It's a 13 Megabyte HLP file, a nice programming reference. Also, you can see the definition of Windows-related API functions and data structures in the header files in the INCLUDE subdirectory of the installed MinGW.

- And, of course, for an excellent hexa editor and disassembler, grab Hacker's View from http://www.serje.net/sen , but you already knew that! :)

These packages helped me a lot with finding out stuff in Windows executables and hacking them.

Joe

P.S.: Sorry, if this is off-topic! (I guess, not...)