diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -58,25 +58,6 @@ Hacking ~~~~~~~ Following is a summary of some coding conventions used in the project. - ... HUNGARIAN NOTATION ... - - - p = pointer - - b = bool, BOOL, int (boolean value) - - i = int - - h = handle - - l = long, (LPARAM) - - w = unsigned short, WORD, (WPARAM) - - dw = DWORD - - lvi = LVITEM - - sz = char* - - wsz = wchar_t* - - ws = std::wstring - - wso = wstring_owner - -The list above is non-exhaustive. Variables whose type is unknown (in -templates) do not need prefixes. Some very common self-explanatory -variables also do not need prefixes, e.g. len (usually size_t). - ... TYPES ... Here are some general guidelines for choosing what types to use: |