avifil32: Correct threading model on interfaces.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2018-03-17 10:19:14 +00:00 committed by Alexandre Julliard
parent 9b9f97e3f6
commit 57a8a33a7c
1 changed files with 5 additions and 5 deletions

View File

@ -22,35 +22,35 @@
[ [
helpstring("Microsoft AVI Files"), helpstring("Microsoft AVI Files"),
threading(apartment), threading(both),
uuid(00020000-0000-0000-C000-000000000046) uuid(00020000-0000-0000-C000-000000000046)
] ]
coclass AVIFile { interface IAVIFile; } coclass AVIFile { interface IAVIFile; }
[ [
helpstring("AVI Compressed Stream"), helpstring("AVI Compressed Stream"),
threading(apartment), threading(both),
uuid(00020001-0000-0000-c000-000000000046) uuid(00020001-0000-0000-c000-000000000046)
] ]
coclass ICMStream { interface IAVIStream; } coclass ICMStream { interface IAVIStream; }
[ [
helpstring("Microsoft Wave File"), helpstring("Microsoft Wave File"),
threading(apartment), threading(both),
uuid(00020003-0000-0000-c000-000000000046) uuid(00020003-0000-0000-c000-000000000046)
] ]
coclass WAVFile { interface IAVIFile; } coclass WAVFile { interface IAVIFile; }
[ [
helpstring("IAVIStream & IAVIFile Proxy"), helpstring("IAVIStream & IAVIFile Proxy"),
threading(apartment), threading(both),
uuid(0002000d-0000-0000-c000-000000000046) uuid(0002000d-0000-0000-c000-000000000046)
] ]
coclass AVIProxy { } coclass AVIProxy { }
[ [
helpstring("ACM Compressed Audio Stream"), helpstring("ACM Compressed Audio Stream"),
threading(apartment), threading(both),
uuid(0002000f-0000-0000-c000-000000000046) uuid(0002000f-0000-0000-c000-000000000046)
] ]
coclass ACMStream { interface IAVIStream; } coclass ACMStream { interface IAVIStream; }