aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/wince.h
diff options
context:
space:
mode:
authorMax Horn2003-07-05 15:17:46 +0000
committerMax Horn2003-07-05 15:17:46 +0000
commit4611b12c0a84ec528f9f020dc85bf4e9a0108c82 (patch)
tree8a7f87ffbad997a6873a1a6e75d0d49746e9d69e /backends/wince/wince.h
parent39abb7cf0a36f348c2755197e18ae2d9edc59eda (diff)
downloadscummvm-rg350-4611b12c0a84ec528f9f020dc85bf4e9a0108c82.tar.gz
scummvm-rg350-4611b12c0a84ec528f9f020dc85bf4e9a0108c82.tar.bz2
scummvm-rg350-4611b12c0a84ec528f9f020dc85bf4e9a0108c82.zip
updated backends to use type MutexRef
svn-id: r8776
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);