aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_qt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/gos_qt.h')
-rw-r--r--src/gos/gos_qt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gos/gos_qt.h b/src/gos/gos_qt.h
index 5338808e..d9836e7d 100644
--- a/src/gos/gos_qt.h
+++ b/src/gos/gos_qt.h
@@ -28,7 +28,7 @@ typedef void* gfxSem;
typedef int gSemcount;
typedef int gThreadreturn;
typedef int gThreadpriority;
-typedef void* gfxThreadHandle;
+typedef void* gThread;
void _gosInit();
void _gosDeinit();
@@ -55,10 +55,10 @@ gBool gfxSemWait(gfxSem *psem, gDelay ms);
gBool gfxSemWaitI(gfxSem *psem);
void gfxSemSignal(gfxSem *psem);
void gfxSemSignalI(gfxSem *psem);
-gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, gThreadpriority prio, DECLARE_THREAD_FUNCTION((*fn),p), void *param);
-gThreadreturn gfxThreadWait(gfxThreadHandle thread);
-gfxThreadHandle gfxThreadMe(void);
-void gfxThreadClose(gfxThreadHandle thread);
+gThread gfxThreadCreate(void *stackarea, size_t stacksz, gThreadpriority prio, DECLARE_THREAD_FUNCTION((*fn),p), void *param);
+gThreadreturn gfxThreadWait(gThread thread);
+gThread gfxThreadMe(void);
+void gfxThreadClose(gThread thread);
#endif /* GFX_USE_OS_QT */
#endif /* _GOS_QT_H */