[PATCH 4/4] includes: Add avrt header

Maarten Lankhorst (none) mlankhorst at patser.
Tue Nov 10 12:57:32 CST 2009


it specifies AVRT_DECLSPEC which supposedly aliases to DECLSPEC_IMPORT, but it uses _AVRT_ symbol which is used as ifdef guard too, so its uneffective
---
 include/avrt.h |   74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)
 create mode 100644 include/avrt.h

diff --git a/include/avrt.h b/include/avrt.h
new file mode 100644
index 0000000..724da6a
--- /dev/null
+++ b/include/avrt.h
@@ -0,0 +1,74 @@
+/*
+ * avrt definitions
+ *
+ * Copyright 2009 Maarten Lankhorst
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ */
+
+#ifndef _AVRT_
+#define _AVRT_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef enum _AVRT_PRIORITY
+{
+    AVRT_PRIORITY_LOW = -1,
+    AVRT_PRIORITY_NORMAL,
+    AVRT_PRIORITY_HIGH,
+    AVRT_PRIORITY_CRITICAL
+} AVRT_PRIORITY, *PAVRT_PRIORITY;
+
+/* Windows compiler is more lax */
+#define THREAD_ORDER_GROUP_INFINITE_TIMEOUT ((void*)((LONG_PTR)-1))
+
+HANDLE WINAPI AvSetMmThreadCharacteristicsA(__in LPCSTR TaskName, __inout LPDWORD TaskIndex);
+HANDLE WINAPI AvSetMmThreadCharacteristicsW(__in LPCWSTR TaskName, __inout LPDWORD TaskIndex);
+#define AvSetMmThreadCharacteristics WINELIB_NAME_AW(AvSetMmThreadCharacteristics)
+
+HANDLE WINAPI AvSetMmMaxThreadCharacteristicsA(__in LPCSTR FirstTask, __in LPCSTR SecondTask, __inout LPDWORD TaskIndex);
+HANDLE WINAPI AvSetMmMaxThreadCharacteristicsW(__in LPCSTR FirstTask, __in LPCSTR SecondTask, __inout LPDWORD TaskIndex);
+#define AvSetMmMaxThreadCharacteristics WINELIB_NAME_AW(AvSetMmMaxThreadCharacteristics)
+
+BOOL WINAPI AvRevertMmThreadCharacteristics(__in HANDLE AvrtHandle);
+BOOL WINAPI AvSetMmThreadPriority(__in HANDLE AvrtHandle, AVRT_PRIORITY Priority);
+BOOL WINAPI AvRtCreateThreadOrderingGroup(
+    __out PHANDLE Context, __in PLARGE_INTEGER Period,
+    __inout GUID *ThreadOrderingGuid, __in_opt PLARGE_INTEGER Timeout);
+
+BOOL WINAPI AvRtCreateThreadOrderingGroupExA(
+    __out PHANDLE Context, __in PLARGE_INTEGER Period,
+    __inout GUID *ThreadOrderingGuid, __in_opt PLARGE_INTEGER Timeout,
+    __in LPCSTR TaskName);
+BOOL WINAPI AvRtCreateThreadOrderingGroupExW(
+    __out PHANDLE Context, __in PLARGE_INTEGER Period,
+    __inout GUID *ThreadOrderingGuid, __in_opt PLARGE_INTEGER Timeout
+    __in LPCSTR TaskName);
+#define AvRtCreateThreadOrderingGroupEx WINELIB_NAME_AW(AvRtCreateThreadOrderingGroupEx)
+
+BOOL WINAPI AvRtJoinThreadOrderingGroup(__out PHANDLE Context, __in GUID *ThreadOrderingGuid, __in BOOL Before);
+BOOL WINAPI AvRtWaitOnThreadOrderingGroup(__in HANDLE Context);
+BOOL WINAPI AvRtLeaveThreadOrderingGroup(__in HANDLE Context);
+BOOL WINAPI AvRtDeleteThreadOrderingGroup(__in HANDLE Context);
+BOOL WINAPI AvQuerySystemResponsiveness(__in HANDLE AvrtHandle, __out PULONG SystemResponsivenessValue);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /*_AVRT_*/
-- 
1.6.5.2


--------------010903030000050706050007--



More information about the wine-patches mailing list