Windows Naming Conventions

If you examine a Windows program, you'll notice that although it looks like a normal C program, there are some differences in the way things are named.

Windows programs often mix case for function names, using uppercase letters to make it more readable and thus identify the purpose of a function:

SampleFunction

In addition, most Windows programmers use a unique naming convention called Hungarian notation.