Implement missing C callbacks

This commit is contained in:
Paul Rouget 2019-08-19 09:45:40 +02:00
parent 2a9b2fe027
commit b642ff2057
5 changed files with 39 additions and 2 deletions

View file

@ -254,6 +254,10 @@ void ServoControl::OnServoAnimatingChanged(bool animating) {
WakeConditionVariable(&mGLCondVar);
}
void ServoControl::OnServoIMEStateChanged(bool aShow) {
// FIXME: https://docs.microsoft.com/en-us/windows/win32/winauto/uiauto-implementingtextandtextrange
}
template <typename Callable> void ServoControl::RunOnUIThread(Callable cb) {
Dispatcher().RunAsync(CoreDispatcherPriority::High, cb);
}