I've been checking out your download section and I can see you've done a few Win32. I'd like to know how did/does it feel to write Win32 programmes...do you write the main stuff in pure C/C++ first and the add it to a Win32 project? Do you feel comfortable in Win32 environment?
thanks for taking the time to answer my questions ;)
Awesoken at
Re: Win32 experience
It always takes time to get comfortable with a new environment. I've been using Win32/DirectX as my main target since 2001. I encapsulate most of the system-dependent stuff in a common library (WINMAIN.CPP/SYSMAIN.H) so I don't have to deal with Win32 / DirectDraw / DirectInput / etc.. every time I start a new project. Visual Studio is full of bloat, so I avoid it. Instead, I use my own text editor (KC.EXE), which has all of my favorite controls, as well as the ability to spawn the compiler with the F5 key.