summaryrefslogtreecommitdiff
path: root/libs/fst
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-04-14 15:10:28 +0200
committerRobin Gareus <robin@gareus.org>2014-04-14 15:10:28 +0200
commit15c5d12321c16932a00b849e25226e0c02bbef82 (patch)
treebd4ca0b7d17558ede22b868c050e8c750409d04e /libs/fst
parent56b93982089bcb93fe6a832bba4d981dc31476ea (diff)
clean up 6cc2812f2e8 (interim vst fixes)
Diffstat (limited to 'libs/fst')
-rw-r--r--libs/fst/vstwin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/fst/vstwin.c b/libs/fst/vstwin.c
index 3c1cbcce8f..6537918a7f 100644
--- a/libs/fst/vstwin.c
+++ b/libs/fst/vstwin.c
@@ -320,20 +320,20 @@ fst_init (void* possible_hmodule)
return 0;
}
-#ifndef PLATFORM_WINDOWS /* linux + wine */
void
fst_start_threading(void)
{
+#ifndef PLATFORM_WINDOWS /* linux + wine */
if (idle_id == 0) {
gui_quit = 0;
idle_id = g_idle_add (g_idle_call, NULL);
}
-}
#endif
+}
-#ifndef PLATFORM_WINDOWS /* linux + wine */
void
fst_stop_threading(void) {
+#ifndef PLATFORM_WINDOWS /* linux + wine */
if (idle_id != 0) {
gui_quit = 1;
PostQuitMessage (0);
@@ -341,8 +341,8 @@ fst_stop_threading(void) {
//g_source_remove(idle_id);
idle_id = 0;
}
-}
#endif
+}
void
fst_exit (void)