| 1224 | } |
| 1225 | |
| 1226 | bool CoordInSmallRect(const COORD& cr, const SMALL_RECT& rc) |
| 1227 | { |
| 1228 | return (cr.X >= rc.Left && cr.X <= rc.Right && cr.Y >= rc.Top && cr.Y <= rc.Bottom); |
| 1229 | } |
| 1230 | |
| 1231 | UINT GetCpFromString(LPCWSTR asString, LPCWSTR* ppszEnd /*= nullptr*/) |
| 1232 | { |
no outgoing calls
no test coverage detected