Possible Duplicate:
Programming slim C++ programs (like uTorrent) for Windows
uTorrent has always impressed me with its 270KB executable and small memory footprint while competing with similar tools which are 30 times its size. I can think of several other tools on my computer that could use such a "debloated" version.
What methods should one employ in trying to write, let's say, a Twitter client in under 300KB?
- I'm guessing the only language options are C, C++ and Assembler (am I right?).
- Are there frameworks you can still use?
- Do you have to employ those crazy tactics from the demo scene to keep the exe small?
- Can something like that still be maintainable?
I am not really a win32 programmer, so parts of this question may not make sense. Corrections are welcome.