aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/wince.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/wince.h')
-rw-r--r--backends/wince/wince.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/wince/wince.h b/backends/wince/wince.h
index 1b369caeed..411e169d89 100644
--- a/backends/wince/wince.h
+++ b/backends/wince/wince.h
@@ -159,10 +159,10 @@ public:
// Mutex functions
- void* create_mutex();
- void lock_mutex(void*);
- void unlock_mutex(void*);
- void delete_mutex(void*);
+ MutexRef create_mutex();
+ void lock_mutex(MutexRef);
+ void unlock_mutex(MutexRef);
+ void delete_mutex(MutexRef);
// Windows callbacks & stuff
static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);