[PATCH 4/7] dmime: Finish the reindentation in CloseDown()

Michael Stefaniuc mstefani at winehq.org
Thu May 11 04:05:47 CDT 2017


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/dmime/performance.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/dlls/dmime/performance.c b/dlls/dmime/performance.c
index 57ee670..292ae80 100644
--- a/dlls/dmime/performance.c
+++ b/dlls/dmime/performance.c
@@ -820,14 +820,15 @@ static HRESULT WINAPI IDirectMusicPerformance8Impl_AdjustTime(IDirectMusicPerfor
 
 static HRESULT WINAPI IDirectMusicPerformance8Impl_CloseDown(IDirectMusicPerformance8 *iface)
 {
-  IDirectMusicPerformance8Impl *This = impl_from_IDirectMusicPerformance8(iface);
+    IDirectMusicPerformance8Impl *This = impl_from_IDirectMusicPerformance8(iface);
 
-  FIXME("(%p): stub\n", This);
-  if (PostMessageToProcessMsgThread(This, PROCESSMSG_EXIT)) {
-    WaitForSingleObject(This->procThread, INFINITE);
-    This->procThreadTicStarted = FALSE;
-    CloseHandle(This->procThread);
-  }
+    FIXME("(%p): semi-stub\n", This);
+
+    if (PostMessageToProcessMsgThread(This, PROCESSMSG_EXIT)) {
+        WaitForSingleObject(This->procThread, INFINITE);
+        This->procThreadTicStarted = FALSE;
+        CloseHandle(This->procThread);
+    }
     if (This->dsound) {
         IDirectSound_Release(This->dsound);
         This->dsound = NULL;
-- 
2.9.3




More information about the wine-patches mailing list