aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 5 insertions, 4 deletions
diff --git a/README b/README
index ebe22ef..c8b3f5c 100644
--- a/README
+++ b/README
@@ -69,12 +69,13 @@ Following is a summary of some coding conventions used in the project.
- w = WORD, WPARAM
- dw = DWORD
- lvi = LVITEM
- - sz = unmangaged, zero-terminated string (char *)
- - wsz = ... wide string (wchar_t *)
- - tsz = ... tstring (TCHAR *)
- - str = ... managed string (std::string)
+ - sz = unmanaged, zero-terminated narrow string (char*)
+ - wsz = ... wide string (wchar_t*)
+ - tsz = ... tstring (TCHAR*)
+ - str = managed narrow string (std::string)
- wstr = ... (std::wstring)
- tstr = ... (std::basic_string<TCHAR>)
+ - bstr = ... (std::basic_string<T> of any type T)
The list above is non-exhaustive. Variables whose type is unknown (in
templates) do not need prefixes. Some very common self-explanatory