diff options
-rw-r--r-- | README | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -53,3 +53,23 @@ following additional programs are required: To build b/EpisodeBrowser.exe, issue `make' in the root directory of the project. + +Hacking +~~~~~~~ +Like many Windows programs, Episode Browser uses Hungarian notation. +Following is a list of prefixes commonly used in the code base: + + lp = pointer ("long/far pointer") + b = boolean (BOOL, int) + i = integer + siz = size (size_t) + h = handle + l = long + w = "word" (WPARAM) + dw = "double word" (DWORD) + sz = zero-terminated string (char *) + wsz = ... wide string (wchar_t *) + tsz = ... tstring (TCHAR *) + sm = ... managed string (std::string) + wsm = ... (std::wstring) + tsm = ... (std::basic_string<TCHAR>) |