diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-20 20:15:22 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-20 20:15:22 +0200 |
commit | 0d5736538a98b2c4001c45d073affc6bc0d772e5 (patch) | |
tree | b14f4e8e7ee0c0ab64294c1c53b83ea8f44f3225 /README | |
parent | 400d4d12b7a70b81629a119844e7d5ad16aa6012 (diff) | |
download | EpisodeBrowser-0d5736538a98b2c4001c45d073affc6bc0d772e5.tar.gz |
Use GetLastError() as default for Win32Error.
Diffstat (limited to 'README')
-rw-r--r-- | README | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -76,6 +76,10 @@ Following is a summary of some coding conventions used in the project. - wstr = ... (std::wstring) - tstr = ... (std::basic_string<TCHAR>) +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: |