| 480 | } |
| 481 | |
| 482 | json::object Win32ControlUnitMgr::get_info() const |
| 483 | { |
| 484 | json::object info; |
| 485 | info["type"] = "win32"; |
| 486 | info["hwnd"] = reinterpret_cast<uint64_t>(hwnd_); |
| 487 | info["screencap_method"] = static_cast<int64_t>(screencap_method_); |
| 488 | info["mouse_method"] = static_cast<int64_t>(mouse_method_); |
| 489 | info["keyboard_method"] = static_cast<int64_t>(keyboard_method_); |
| 490 | return info; |
| 491 | } |
| 492 | |
| 493 | MAA_CTRL_UNIT_NS_END |
nothing calls this directly
no outgoing calls
no test coverage detected