Coding Style Guidelines
Use a 4-space indent instead. Before you start writing code, make sure you enable your editor’s "map tabs to spaces" feature. In MSDEV, you can find this option by clicking "tools"=>"options"=>"tabs."
We’ve got internal API’s for everything. So if you’re about to type "strcmp" ask your mentor or someone else what to use instead.
Any Windows programming book (e.g. Petzold’s Programming Windows 95) should have a discussion of this naming convention. Or you can just look around in the IE code base for examples.
Put a space between "if" and "(". Put a space between "switch" and "(". Don’t put a space between "foo" and "(".