From e74de7834dda657966f209b2cb23b145773a915f Mon Sep 17 00:00:00 2001 From: Yonit Halperin Date: Mon, 9 Nov 2009 19:19:00 +0200 Subject: spice client: calling the timers during modal loop in Windows --- client/process_loop.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'client/process_loop.h') diff --git a/client/process_loop.h b/client/process_loop.h index df8650dc..ea9eea43 100644 --- a/client/process_loop.h +++ b/client/process_loop.h @@ -205,6 +205,11 @@ public: void deactivate_interval_timer(Timer* timer); void process_events_queue(); + /* can be used for handling timers in modal loop state in Windows (mainly, + for updating the screen) */ + int get_soonest_timeout(); + void timers_action(); + void* get_owner() { return _owner;} bool is_same_thread(pthread_t thread) { return _started && pthread_equal(_thread, thread);} -- cgit