Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-06 | Update Hungarian notation for buffer sizes. | John Ankarström | |
For string lengths EXCLUDING NUL, I use len, whereas cb and cch are used for string lengths INCLUDING NUL. cb = byte count = sizeof(a) = narrow string length cch = character count = sizeof(a)/sizeof(*a) = string length cb and cch are equivalent for narrow strings. I prefer cch. | |||
2022-08-06 | Rearrange source. | John Ankarström | |
2022-08-04 | Use C++ casts, nullptr. | John Ankarström | |
2022-08-03 | Use Pascal case for all functions. | John Ankarström | |
2022-08-03 | Split common.h to util.h, wcharptr.h and win.h. | John Ankarström | |