include: Add the rest of async callback flags.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2020-02-11 12:19:03 +03:00 committed by Alexandre Julliard
parent b24b4ec875
commit 0e2ee84710
1 changed files with 5 additions and 2 deletions

View File

@ -425,8 +425,11 @@ interface IMFRemoteAsyncCallback : IUnknown
HRESULT Invoke([in] HRESULT hr, [in] IUnknown *pRemoteResult);
}
cpp_quote("#define MFASYNC_FAST_IO_PROCESSING_CALLBACK 0x0001")
cpp_quote("#define MFASYNC_SIGNAL_CALLBACK 0x0002" )
cpp_quote("#define MFASYNC_FAST_IO_PROCESSING_CALLBACK 0x00000001")
cpp_quote("#define MFASYNC_SIGNAL_CALLBACK 0x00000002")
cpp_quote("#define MFASYNC_BLOCKING_CALLBACK 0x00000004")
cpp_quote("#define MFASYNC_REPLY_CALLBACK 0x00000008")
cpp_quote("#define MFASYNC_LOCALIZE_REMOTE_CALLBACK 0x00000010")
cpp_quote("#define MFASYNC_CALLBACK_QUEUE_UNDEFINED 0x00000000")
cpp_quote("#define MFASYNC_CALLBACK_QUEUE_STANDARD 0x00000001")