ioannis - 2017-09-30

This one cought my eye but issue occurs in other places are as well:

CSize CDC::GetTextExtentPoint32(CString& str) const;

str parameter should be const as follows:

CSize CDC::GetTextExtentPoint32(const CString& str) const;