diff options
| author | Max Horn | 2003-07-05 15:17:46 +0000 |
|---|---|---|
| committer | Max Horn | 2003-07-05 15:17:46 +0000 |
| commit | 4611b12c0a84ec528f9f020dc85bf4e9a0108c82 (patch) | |
| tree | 8a7f87ffbad997a6873a1a6e75d0d49746e9d69e /backends/gp32 | |
| parent | 39abb7cf0a36f348c2755197e18ae2d9edc59eda (diff) | |
| download | scummvm-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/gp32')
| -rw-r--r-- | backends/gp32/gp32.cpp | 8 | ||||
| -rw-r--r-- | backends/gp32/gp32.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/backends/gp32/gp32.cpp b/backends/gp32/gp32.cpp index cb62c227ba..e9c653a968 100644 --- a/backends/gp32/gp32.cpp +++ b/backends/gp32/gp32.cpp @@ -1075,10 +1075,10 @@ void OSystem_GP32::update_cdrom() { } void OSystem_GP32::set_timer(int timer, int (*callback)(int)) { } // Mutex handling -void* OSystem_GP32::create_mutex() { } -void OSystem_GP32::lock_mutex(void *mutex) { } -void OSystem_GP32::unlock_mutex(void *mutex) { } -void OSystem_GP32::delete_mutex(void *mutex) { } +MutexRef OSystem_GP32::create_mutex() { } +void OSystem_GP32::lock_mutex(MutexRef mutex) { } +void OSystem_GP32::unlock_mutex(MutexRef mutex) { } +void OSystem_GP32::delete_mutex(MutexRef mutex) { } // Quit void gphalt(int); diff --git a/backends/gp32/gp32.h b/backends/gp32/gp32.h index 825eeccb51..19d0f9ebd6 100644 --- a/backends/gp32/gp32.h +++ b/backends/gp32/gp32.h @@ -102,10 +102,10 @@ public: void set_timer(int timer, int (*callback)(int)); // Mutex handling - void *create_mutex(); - void lock_mutex(void *mutex); - void unlock_mutex(void *mutex); - void delete_mutex(void *mutex); + MutexRef create_mutex(); + void lock_mutex(MutexRef mutex); + void unlock_mutex(MutexRef mutex); + void delete_mutex(MutexRef mutex); // Quit void quit(); |
