aboutsummaryrefslogtreecommitdiff
path: root/backends/symbian/src
diff options
context:
space:
mode:
authorLars Persson2006-05-04 20:47:27 +0000
committerLars Persson2006-05-04 20:47:27 +0000
commitffd43c54a6366251c5ca4b08a86cd3907b4fd05e (patch)
tree28dea468bfc923957f6efee98d47d312644b0be9 /backends/symbian/src
parent8ff4409f4981b523fa5dcfce6c6d4f82e9016834 (diff)
downloadscummvm-rg350-ffd43c54a6366251c5ca4b08a86cd3907b4fd05e.tar.gz
scummvm-rg350-ffd43c54a6366251c5ca4b08a86cd3907b4fd05e.tar.bz2
scummvm-rg350-ffd43c54a6366251c5ca4b08a86cd3907b4fd05e.zip
Updates for S60V3 and UIQ3
svn-id: r22341
Diffstat (limited to 'backends/symbian/src')
-rw-r--r--backends/symbian/src/ScummApp.cpp4
-rw-r--r--backends/symbian/src/ScummApp.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/backends/symbian/src/ScummApp.cpp b/backends/symbian/src/ScummApp.cpp
index 71cbb33887..f750e496fa 100644
--- a/backends/symbian/src/ScummApp.cpp
+++ b/backends/symbian/src/ScummApp.cpp
@@ -73,7 +73,7 @@ CApaApplication* NewApplication() {
return new CScummApp;
}
-#if defined (UIQ3) || defined (__SERIES60_30__)
+#if defined (UIQ3) || defined (S60V3)
#include <eikstart.h>
// E32Main() contains the program's start up code, the entry point for an EXE.
GLDEF_C TInt E32Main() {
@@ -83,7 +83,7 @@ GLDEF_C TInt E32Main() {
#endif // EPOC_AS_APP
-#if !defined (UIQ3) && !defined (__SERIES60_30__)
+#if !defined (UIQ3) && !defined (S60V3)
GLDEF_C TInt E32Dll(TDllReason) {
return KErrNone;
}
diff --git a/backends/symbian/src/ScummApp.h b/backends/symbian/src/ScummApp.h
index 56ca8b68c3..9b8fd47a1d 100644
--- a/backends/symbian/src/ScummApp.h
+++ b/backends/symbian/src/ScummApp.h
@@ -29,7 +29,7 @@
#include <e32base.h>
#include <sdlapp.h>
-#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__)
+#if defined (EPOC_AS_APP) && !defined (UIQ3) && !defined (S60V3)
#include "ECompXL.h"
#endif
@@ -39,7 +39,7 @@ public:
~CScummApp();
TUid AppDllUid() const;
-#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__)
+#if defined (EPOC_AS_APP) && !defined (UIQ3) && !defined (S60V3)
TECompXL iECompXL;
#endif
};