wmvcore: Support IWMProfile in IWMSyncReader.
[wine.git] / include / rtworkq.idl
blob32132961bd8e2d2c37616d18db99f53c26648c2b
1 /*
2 * Copyright 2020 Nikolay Sivov for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 import "unknwn.idl";
21 typedef enum
23 RTWQ_STANDARD_WORKQUEUE = 0,
24 RTWQ_WINDOW_WORKQUEUE = 1,
25 RTWQ_MULTITHREADED_WORKQUEUE = 2,
26 } RTWQ_WORKQUEUE_TYPE;
28 typedef unsigned __int64 RTWQWORKITEM_KEY;
31 object,
32 uuid(ac6b7889-0740-4d51-8619-905994a55cc6),
33 local
35 interface IRtwqAsyncResult : IUnknown
37 HRESULT GetState([out] IUnknown **state);
38 HRESULT GetStatus();
39 HRESULT SetStatus([in] HRESULT status);
40 HRESULT GetObject([out] IUnknown **object);
41 IUnknown *GetStateNoAddRef();
45 object,
46 uuid(a27003cf-2354-4f2a-8d6a-ab7cff15437e),
47 local
49 interface IRtwqAsyncCallback : IUnknown
51 HRESULT GetParameters([out] DWORD *flags, [out] DWORD *queue);
52 HRESULT Invoke([in] IRtwqAsyncResult *result);
56 object,
57 uuid(63d9255a-7ff1-4b61-8faf-ed6460dacf2b),
58 local
60 interface IRtwqPlatformEvents : IUnknown
62 HRESULT InitializationComplete(void);
63 HRESULT ShutdownStart(void);
64 HRESULT ShutdownComplete(void);
67 cpp_quote("#define RTWQ_E_ERROR(x) ((HRESULT)(0xc00d0000L+x))")
68 cpp_quote("#define RTWQ_E_BUFFERTOOSMALL RTWQ_E_ERROR(14001)")
69 cpp_quote("#define RTWQ_E_NOT_INITIALIZED RTWQ_E_ERROR(14006)")
70 cpp_quote("#define RTWQ_E_UNEXPECTED RTWQ_E_ERROR(14011)")
71 cpp_quote("#define RTWQ_E_NOT_FOUND RTWQ_E_ERROR(14037)")
72 cpp_quote("#define RTWQ_E_OPERATION_CANCELLED RTWQ_E_ERROR(14061)")
73 cpp_quote("#define RTWQ_E_INVALID_WORKQUEUE RTWQ_E_ERROR(14079)")
74 cpp_quote("#define RTWQ_E_SHUTDOWN RTWQ_E_ERROR(16005)")
76 cpp_quote("#ifdef __WINESRC__")
77 cpp_quote("typedef struct tagRTWQASYNCRESULT")
78 cpp_quote("{")
79 cpp_quote(" IRtwqAsyncResult AsyncResult;")
80 cpp_quote("#else")
81 cpp_quote("typedef struct tagRTWQASYNCRESULT : public IRtwqAsyncResult {")
82 cpp_quote("#endif")
83 cpp_quote(" OVERLAPPED overlapped;")
84 cpp_quote(" IRtwqAsyncCallback *pCallback;")
85 cpp_quote(" HRESULT hrStatusResult;")
86 cpp_quote(" DWORD dwBytesTransferred;")
87 cpp_quote(" HANDLE hEvent;")
88 cpp_quote("} RTWQASYNCRESULT;")
90 cpp_quote("typedef void (WINAPI *RTWQPERIODICCALLBACK)(IUnknown *context);")
92 cpp_quote("HRESULT WINAPI RtwqAddPeriodicCallback(RTWQPERIODICCALLBACK callback, IUnknown *context, DWORD *key);")
93 cpp_quote("HRESULT WINAPI RtwqAllocateSerialWorkQueue(DWORD target_queue, DWORD *queue);")
94 cpp_quote("HRESULT WINAPI RtwqAllocateWorkQueue(RTWQ_WORKQUEUE_TYPE queue_type, DWORD *queue);")
95 cpp_quote("HRESULT WINAPI RtwqBeginRegisterWorkQueueWithMMCSS(DWORD queue, const WCHAR *mmcss_class, DWORD taskid, LONG priority, IRtwqAsyncCallback *callback, IUnknown *state);")
96 cpp_quote("HRESULT WINAPI RtwqBeginUnregisterWorkQueueWithMMCSS(DWORD queue, IRtwqAsyncCallback *callback, IUnknown *state);")
97 cpp_quote("HRESULT WINAPI RtwqCancelDeadline(HANDLE request);")
98 cpp_quote("HRESULT WINAPI RtwqCancelWorkItem(RTWQWORKITEM_KEY key);")
99 cpp_quote("HRESULT WINAPI RtwqCreateAsyncResult(IUnknown *object, IRtwqAsyncCallback *callback, IUnknown *state, IRtwqAsyncResult **result);")
100 cpp_quote("HRESULT WINAPI RtwqEndRegisterWorkQueueWithMMCSS(IRtwqAsyncResult *result, DWORD *taskid);")
101 cpp_quote("HRESULT WINAPI RtwqGetWorkQueueMMCSSClass(DWORD queue, WCHAR *mmcss_class, DWORD *length);")
102 cpp_quote("HRESULT WINAPI RtwqGetWorkQueueMMCSSPriority(DWORD queue, LONG *priority);")
103 cpp_quote("HRESULT WINAPI RtwqGetWorkQueueMMCSSTaskId(DWORD queue, DWORD *taskid);")
104 cpp_quote("HRESULT WINAPI RtwqInvokeCallback(IRtwqAsyncResult *result);")
105 cpp_quote("HRESULT WINAPI RtwqJoinWorkQueue(DWORD queue, HANDLE hFile, HANDLE *cookie);")
106 cpp_quote("HRESULT WINAPI RtwqLockPlatform(void);")
107 cpp_quote("HRESULT WINAPI RtwqLockSharedWorkQueue(const WCHAR *usageclass, LONG priority, DWORD *taskid, DWORD *queue);")
108 cpp_quote("HRESULT WINAPI RtwqLockWorkQueue(DWORD queue);")
109 cpp_quote("HRESULT WINAPI RtwqPutWaitingWorkItem(HANDLE event, LONG priority, IRtwqAsyncResult *result, RTWQWORKITEM_KEY *key);")
110 cpp_quote("HRESULT WINAPI RtwqPutWorkItem(DWORD queue, LONG priority, IRtwqAsyncResult *result);")
111 cpp_quote("HRESULT WINAPI RtwqRegisterPlatformEvents(IRtwqPlatformEvents *events);")
112 cpp_quote("HRESULT WINAPI RtwqRegisterPlatformWithMMCSS(const WCHAR *mmcss_class, DWORD *taskid, LONG priority);")
113 cpp_quote("HRESULT WINAPI RtwqRemovePeriodicCallback(DWORD key);")
114 cpp_quote("HRESULT WINAPI RtwqScheduleWorkItem(IRtwqAsyncResult *result, INT64 timeout, RTWQWORKITEM_KEY *key);")
115 cpp_quote("HRESULT WINAPI RtwqSetDeadline(DWORD queue_id, LONGLONG deadline, HANDLE *request);")
116 cpp_quote("HRESULT WINAPI RtwqSetDeadline2(DWORD queue_id, LONGLONG deadline, LONGLONG predeadline, HANDLE *request);")
117 cpp_quote("HRESULT WINAPI RtwqSetLongRunning(DWORD queue_id, BOOL enable);")
118 cpp_quote("HRESULT WINAPI RtwqShutdown(void);")
119 cpp_quote("HRESULT WINAPI RtwqStartup(void);")
120 cpp_quote("HRESULT WINAPI RtwqUnjoinWorkQueue(DWORD queue, HANDLE cookie);")
121 cpp_quote("HRESULT WINAPI RtwqUnlockPlatform(void);")
122 cpp_quote("HRESULT WINAPI RtwqUnlockWorkQueue(DWORD queue);")
123 cpp_quote("HRESULT WINAPI RtwqUnregisterPlatformEvents(IRtwqPlatformEvents *events);")
124 cpp_quote("HRESULT WINAPI RtwqUnregisterPlatformFromMMCSS(void);")