hi all, I have been using mingw g++ default to create and test win32 applications.
But the lack of ddraw.h in mingw helder files directory I had to move to the
cl.exe (microsoft C/C++ linker) and link.exe.
My Command line is this.
1 2
F:\EXERCISES\win32\GDI\ch02>link /subsystem:windows /libpath:"C:\Program Files\
icrosoft Visual Studio 10.0\VC\lib" hello4.obj win.obj
But it shows a hell of unresolved symbols.
Could somebody please be kind to give me the correct linker and library options to
pass to the link.exe to link this with win32 libraries and ddraw libraries.
And in the gcc case there is no ddraw.h helder file in C:\dev-cpp\include and it also can be
fixed by downloading the ddraw.h and place it on \include and download the ddraw.lib
and place it in the \lib and now it's compiling with the g++ too.
I don't know why mingw ppl doesn't supply that library and helder support for ddraw. :<