Name | Modified | Size | Downloads / Week |
---|---|---|---|
Readme.txt | 2009-08-18 | 1.2 kB | |
gspOutputDebugger.zip | 2009-08-18 | 3.8 kB | |
Totals: 2 Items | 5.0 kB | 0 |
This is an output debugger window for winapi programs. It creates a console window on the right side of the screen that the user can send data at certain points in the program. This is very similar to how the windows console program functions. ---------------------- VERSION INFO: Current Version 1.0.0 VERSION HISTORY: V1.0.0 - debut of the program. Basic output of text from the program. ---------------------- INSTALLATION AND USE: This program will work with any windows API program that has a message loop. 1.) Include the gspout.h file in your projects (you will also need to add the existing item to your project so it can compile) 2.) Create your object with the 2 parameters, BOOL,STRING: gspOut myObject(true, "My Window Title"); The first parameter will show or hide the window when the program is compiled and executed The Second parameter is the title of the window. *NOTE* You can create multiple objects in different files to have your output separated into multiple windows. 3.) Use the object just as you would a cout statement. ex. - myObject << "This is my text" << endl << 98*4/2 << "this is more text"; 4.) That's it. Have fun!