Dmitry Timoshkov : avifil32: Correct threading model on interfaces.

Alexandre Julliard julliard at winehq.org
Tue Jun 26 04:44:26 CDT 2018


Module: wine
Branch: stable
Commit: 751b06e0b4762220cfb05f8b4d786f80907f3cfe
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=751b06e0b4762220cfb05f8b4d786f80907f3cfe

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Sat Mar 17 10:19:14 2018 +0000

avifil32: Correct threading model on interfaces.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 57a8a33a7cfdf9f52c03f6407a0831538a662cee)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/avifil32/avifil32.idl | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/avifil32/avifil32.idl b/dlls/avifil32/avifil32.idl
index 1f50f15..420cbb9 100644
--- a/dlls/avifil32/avifil32.idl
+++ b/dlls/avifil32/avifil32.idl
@@ -22,35 +22,35 @@
 
 [
     helpstring("Microsoft AVI Files"),
-    threading(apartment),
+    threading(both),
     uuid(00020000-0000-0000-C000-000000000046)
 ]
 coclass AVIFile { interface IAVIFile; }
 
 [
     helpstring("AVI Compressed Stream"),
-    threading(apartment),
+    threading(both),
     uuid(00020001-0000-0000-c000-000000000046)
 ]
 coclass ICMStream { interface IAVIStream; }
 
 [
     helpstring("Microsoft Wave File"),
-    threading(apartment),
+    threading(both),
     uuid(00020003-0000-0000-c000-000000000046)
 ]
 coclass WAVFile { interface IAVIFile; }
 
 [
     helpstring("IAVIStream & IAVIFile Proxy"),
-    threading(apartment),
+    threading(both),
     uuid(0002000d-0000-0000-c000-000000000046)
 ]
 coclass AVIProxy { }
 
 [
     helpstring("ACM Compressed Audio Stream"),
-    threading(apartment),
+    threading(both),
     uuid(0002000f-0000-0000-c000-000000000046)
 ]
 coclass ACMStream { interface IAVIStream; }




More information about the wine-cvs mailing list