Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-24 | Remove Prolog dependency. | John Ankarström | |
The only thing left to reimplement is the tracking of watched episodes in MPC-HC. | |||
2022-08-22 | Change initialization style. | John Ankarström | |
Because I don't want to have to remember what classes have initializer_list overloads. | |||
2022-08-17 | Make FileView more type-safe. | John Ankarström | |
2022-08-13 | Minor changes. | John Ankarström | |
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 | |