| 188 | thread = Thread::Start(LockThread, wnd); |
| 189 | } |
| 190 | static void UnLock() |
| 191 | { |
| 192 | if (thread) |
| 193 | { |
| 194 | TerminateThread(thread, 0); |
| 195 | thread = 0; |
| 196 | } |
| 197 | ClipCursor(0); |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | class QiInterpreter; |
nothing calls this directly
no outgoing calls
no test coverage detected