| 86 | } |
| 87 | |
| 88 | void GetBorderSize(HWND hWnd, LPSIZE lpSize) |
| 89 | { |
| 90 | RECT diff; |
| 91 | GetBorderRect(hWnd, &diff); |
| 92 | if ( lpSize ) |
| 93 | { |
| 94 | lpSize->cx = diff.left + diff.right; |
| 95 | lpSize->cy = diff.top + diff.bottom; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | LPARAM FixPoints(LPARAM lParam) |
| 100 | { |
no test coverage detected