| 204 | } |
| 205 | |
| 206 | std::wstring Format(const CursorShapeInfo &info) { |
| 207 | std::wstringstream ss; |
| 208 | ss << (info.visible ? 1 : 0) << L"," << std::uppercase << std::hex << std::setw(16) << std::setfill(L'0') |
| 209 | << info.hash << std::dec << L"," << info.width << L"," << info.height << L"," << info.hot_x << L"," |
| 210 | << info.hot_y; |
| 211 | return ss.str(); |
| 212 | } |
| 213 | |
| 214 | } // namespace cursor_shape |
no outgoing calls
no test coverage detected