summaryrefslogtreecommitdiff
path: root/libs/backends/portaudio/win_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/backends/portaudio/win_utils.h')
-rw-r--r--libs/backends/portaudio/win_utils.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/backends/portaudio/win_utils.h b/libs/backends/portaudio/win_utils.h
new file mode 100644
index 0000000000..50576b9c5d
--- /dev/null
+++ b/libs/backends/portaudio/win_utils.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2015 Tim Mayberry <mojofunk@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef WIN_UTILS_H
+#define WIN_UTILS_H
+
+#include "stdint.h"
+
+namespace utils {
+
+bool set_min_timer_resolution ();
+
+bool reset_timer_resolution ();
+
+uint64_t get_microseconds ();
+
+}
+
+#endif // WIN_UTILS_H