What is the include needed?
-
What is the include needed for graphics that is equivilent to the "#include " in the Bordland Version of C++. Any help is appreciated. Thanks, Jon
There is no such thing in visual c. The graphics routines you are talking about are borland specific and are just an extension on code that borland wrote for Turbo Pascal about 20 years ago. John
-
What is the include needed for graphics that is equivilent to the "#include " in the Bordland Version of C++. Any help is appreciated. Thanks, Jon
If we are talking windows programming than the basic drawing functions (GDI functions) are included when you include the windows header file (windows.h). For console based applications if you look at www.cprogramming.com some people have written custom graphics functions for use with console based apps. Just due a search from the main page.
-
If we are talking windows programming than the basic drawing functions (GDI functions) are included when you include the windows header file (windows.h). For console based applications if you look at www.cprogramming.com some people have written custom graphics functions for use with console based apps. Just due a search from the main page.