blob: d5bcd2c20057737976f3b38d568ac589b76d67bb [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000011#ifndef WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_
12#define WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
14#include <windows.h>
15
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000016#include "webrtc/system_wrappers/interface/event_wrapper.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000017
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000018#include "webrtc/typedefs.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000019
20namespace webrtc {
niklase@google.com470e71d2011-07-07 08:21:25 +000021
Peter Boström64c03662015-04-08 11:24:19 +020022class EventTimerWin : public EventTimerWrapper {
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000023 public:
Peter Boström64c03662015-04-08 11:24:19 +020024 EventTimerWin();
25 virtual ~EventTimerWin();
niklase@google.com470e71d2011-07-07 08:21:25 +000026
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000027 virtual EventTypeWrapper Wait(unsigned long max_time);
28 virtual bool Set();
niklase@google.com470e71d2011-07-07 08:21:25 +000029
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000030 virtual bool StartTimer(bool periodic, unsigned long time);
31 virtual bool StopTimer();
32
33 private:
34 HANDLE event_;
pbos@webrtc.org046deb92013-04-09 09:06:11 +000035 uint32_t timerID_;
niklase@google.com470e71d2011-07-07 08:21:25 +000036};
niklase@google.com470e71d2011-07-07 08:21:25 +000037
phoglund@webrtc.org5bbe0692012-12-10 10:44:37 +000038} // namespace webrtc
39
40#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_EVENT_WIN_H_