rhodes 1.5.5 → 2.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -0
- data/Manifest.txt +214 -32
- data/Rakefile +33 -10
- data/bin/upgrade-rhodes-app +0 -1
- data/lib/build/compileERB/bb.rb +2 -2
- data/lib/build/compileERB/default.rb +7 -5
- data/lib/build/jake.rb +1 -1
- data/lib/extensions/digest-md5/ext.yml +1 -1
- data/lib/extensions/digest-md5/ext/Rakefile +35 -36
- data/lib/extensions/digest-md5/ext/build.bat +1 -0
- data/lib/extensions/digest-md5/ext/digest-md5.vcproj +203 -0
- data/lib/extensions/digest-sha1/ext.yml +1 -1
- data/lib/extensions/digest/ext.yml +1 -1
- data/lib/extensions/digest/ext/Rakefile +35 -39
- data/lib/extensions/digest/ext/build.bat +1 -2
- data/lib/extensions/digest/ext/digest.vcproj +203 -0
- data/lib/framework/rho/render.rb +79 -22
- data/lib/framework/rho/rho.rb +294 -56
- data/lib/framework/rho/rhoapplication.rb +10 -0
- data/lib/framework/rho/rhofsconnector.rb +2 -6
- data/lib/framework/rho/rhoutils.rb +56 -14
- data/lib/framework/rho/rhoviewhelpers.rb +2 -0
- data/lib/framework/rhodes.rb +2 -2
- data/lib/framework/rhom/rhom.rb +42 -15
- data/lib/framework/rhom/rhom_db_adapter.rb +165 -159
- data/lib/framework/rhom/rhom_object.rb +0 -1
- data/lib/framework/rhom/rhom_object_factory.rb +343 -166
- data/lib/framework/rhom/rhom_source.rb +28 -15
- data/lib/framework/version.rb +2 -2
- data/lib/rhodes.rb +2 -2
- data/platform/android/Rhodes/AndroidManifest.xml +2 -2
- data/platform/android/Rhodes/gen/com/rhomobile/rhodes/R.java +39 -44
- data/platform/android/Rhodes/jni/include/JNIRhodes.h +1 -1
- data/platform/android/Rhodes/jni/include/details/rhojava.inc +23 -20
- data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_RhoMenu.h +61 -0
- data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_Rhodes.h +16 -0
- data/platform/android/Rhodes/jni/include/jni/com_rhomobile_rhodes_alert_Alert.h +21 -0
- data/platform/android/Rhodes/jni/include/sslimpl.h +1 -1
- data/platform/android/Rhodes/jni/src/alert.cpp +32 -5
- data/platform/android/Rhodes/jni/src/callbacks.cpp +51 -21
- data/platform/android/Rhodes/jni/src/mapview.cpp +3 -8
- data/platform/android/Rhodes/jni/src/menu.cpp +70 -0
- data/platform/android/Rhodes/jni/src/navbar.cpp +16 -0
- data/platform/android/Rhodes/jni/src/rhodes.cpp +37 -0
- data/platform/android/Rhodes/jni/src/sslimpl.cpp +3 -3
- data/platform/android/Rhodes/jni/src/webview.cpp +21 -7
- data/platform/android/Rhodes/res/drawable/alert_alert.png +0 -0
- data/platform/android/Rhodes/res/drawable/alert_info.png +0 -0
- data/platform/android/Rhodes/res/drawable/alert_question.png +0 -0
- data/platform/android/Rhodes/res/drawable/camera.png +0 -0
- data/platform/android/Rhodes/res/layout/camera.xml +18 -3
- data/platform/android/Rhodes/res/menu/options.xml +0 -10
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/AndroidR.java +5 -10
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Capabilities.java +12 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMenu.java +105 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Rhodes.java +157 -122
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/SplashScreen.java +7 -58
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/WebView.java +16 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/Alert.java +220 -17
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/Camera.java +22 -4
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/ImageCapture.java +44 -25
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +10 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/MainView.java +3 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +10 -21
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +15 -12
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/phonebook/Phonebook.java +44 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +47 -3
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/MailUriHandler.java +13 -6
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/TelUriHandler.java +11 -5
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/UriHandler.java +1 -4
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/VideoUriHandler.java +61 -0
- data/platform/android/build/RhodesSRC_build.files +3 -0
- data/platform/android/build/android.rake +173 -60
- data/platform/android/build/androidcommon.rb +1 -2
- data/platform/android/build/librhocommon_build.files +5 -0
- data/platform/android/build/librhodes_build.files +2 -0
- data/platform/android/build/libruby_build.files +2 -1
- data/platform/bb/Hsqldb/Hsqldb.jdp +0 -3
- data/platform/bb/Hsqldb/src/com/rho/db/FileUtilBB.java +1 -1
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBResult.java +16 -1
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBRowResult.java +5 -0
- data/platform/bb/Hsqldb/src/com/rho/db/HsqlDBStorage.java +25 -4
- data/platform/bb/Hsqldb/src/com/rho/db/Journal.java +1 -1
- data/platform/bb/Hsqldb/src/com/rho/file/FileAccessBB.java +0 -1
- data/platform/bb/Hsqldb/src/j2me/math/Number.java +6 -3
- data/platform/bb/Hsqldb/src/org/hsqldb/CompiledStatementExecutor.java +2 -1
- data/platform/bb/Hsqldb/src/org/hsqldb/Expression.java +1 -0
- data/platform/bb/Hsqldb/src/org/hsqldb/Parser.java +1 -0
- data/platform/bb/Hsqldb/src/org/hsqldb/Result.java +2 -0
- data/platform/bb/Hsqldb/src/org/hsqldb/Select.java +12 -6
- data/platform/bb/Hsqldb/src/org/hsqldb/Session.java +19 -12
- data/platform/bb/Hsqldb/src/org/hsqldb/Table.java +10 -4
- data/platform/bb/Hsqldb/src/org/hsqldb/Token.java +10 -2
- data/platform/bb/Hsqldb/src/org/hsqldb/Tokenizer.java +3 -3
- data/platform/bb/Hsqldb/src/org/hsqldb/lib/java/JavaSystem.java +1 -1
- data/platform/bb/Hsqldb/src/org/hsqldb/persist/HsqlProperties.java +2 -1
- data/platform/bb/Hsqldb/src/org/hsqldb/persist/ScaledRAFile.java +1 -1
- data/platform/bb/Hsqldb/src/org/hsqldb/scriptio/ScriptReaderText.java +1 -1
- data/platform/bb/Hsqldb/src/org/hsqldb/scriptio/ScriptWriterBase.java +1 -1
- data/platform/bb/RubyVM/RubyVM.jdp +9 -10
- data/platform/bb/build/RubyVM_build.files +9 -7
- data/platform/bb/build/bb.rake +13 -3
- data/platform/bb/build/hsqldb_build.files +0 -2
- data/platform/bb/build/rhodes_build.files +5 -2
- data/platform/bb/rhodes/platform/4.7/com/rho/RhoMainScreen.java +8 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/BrowserAdapter5.java +154 -0
- data/platform/bb/rhodes/platform/5.0/com/rho/RhoMainScreen.java +8 -0
- data/platform/bb/rhodes/platform/common/com/rho/BrowserAdapter5.java +28 -0
- data/platform/bb/rhodes/rhodes.jdp +12 -7
- data/platform/bb/rhodes/src/com/rho/BrowserAdapter.java +331 -0
- data/platform/bb/rhodes/src/com/rho/BrowserAdapter5.java +28 -0
- data/platform/bb/rhodes/src/com/rho/IBrowserAdapter.java +10 -0
- data/platform/bb/rhodes/src/com/rho/RhoMainScreen.java +4 -0
- data/platform/bb/rhodes/src/com/rho/RhoRubyHelper.java +2 -4
- data/platform/bb/rhodes/src/com/rho/{Jsr75File.java → file/Jsr75File.java} +83 -36
- data/platform/bb/{Hsqldb → rhodes}/src/com/rho/file/Jsr75RAFileImpl.java +0 -1
- data/platform/bb/{Hsqldb → rhodes}/src/com/rho/file/PersistRAFileImpl.java +0 -2
- data/platform/bb/rhodes/src/com/rho/net/NetworkAccess.java +8 -10
- data/platform/bb/rhodes/src/com/rho/rubyext/Alert.java +1 -1
- data/platform/bb/rhodes/src/com/rho/rubyext/GeoLocation.java +39 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/System.java +63 -2
- data/platform/bb/rhodes/src/com/rho/rubyext/WebView.java +100 -0
- data/platform/bb/rhodes/src/rhomobile/LogScreen.java +1 -1
- data/platform/bb/rhodes/src/rhomobile/PushListeningThread.java +13 -1
- data/platform/bb/rhodes/src/rhomobile/RhodesApplication.java +138 -492
- data/platform/bb/rhodes/src/rhomobile/SecondaryResourceFetchThread.java +11 -2
- data/platform/bb/rhodes/src/rhomobile/Utilities.java +14 -10
- data/platform/bb/rhodes/src/rhomobile/camera/CameraScreen.java +5 -14
- data/platform/bb/rhodes/src/rhomobile/camera/ImageBrowserScreen.java +1 -1
- data/platform/bb/rhodes/src/rhomobile/mapview/GoogleMapField.java +2 -2
- data/platform/iphone/Classes/AppManager/AppManager.m +37 -14
- data/platform/iphone/Classes/Camera/PickImageDelegate.h +15 -4
- data/platform/iphone/Classes/Camera/PickImageDelegate.m +53 -50
- data/platform/iphone/Classes/DateTimePicker.h +17 -0
- data/platform/iphone/Classes/DateTimePicker.m +35 -0
- data/platform/iphone/Classes/GeoLocation/LocationController.m +2 -3
- data/platform/iphone/Classes/LogOptionsController.m +3 -2
- data/platform/iphone/Classes/LogViewController.m +4 -2
- data/platform/iphone/Classes/MapView/GoogleGeocoder.m +12 -20
- data/platform/iphone/Classes/MapView/MapAnnotation.h +9 -13
- data/platform/iphone/Classes/MapView/MapAnnotation.m +17 -65
- data/platform/iphone/Classes/MapView/MapViewController.h +1 -7
- data/platform/iphone/Classes/MapView/MapViewController.m +51 -25
- data/platform/iphone/Classes/NativeBar.h +0 -12
- data/platform/iphone/Classes/NativeBar.m +121 -2
- data/platform/iphone/Classes/NavBar.h +16 -0
- data/platform/iphone/Classes/NavBar.m +115 -0
- data/platform/iphone/Classes/RhoAlert.h +19 -0
- data/platform/iphone/Classes/RhoAlert.m +258 -0
- data/platform/iphone/Classes/RhoDelegate.m +1 -0
- data/platform/iphone/Classes/RhoMainView.h +33 -0
- data/platform/iphone/Classes/Rhodes.h +56 -0
- data/platform/iphone/Classes/Rhodes.m +533 -0
- data/platform/iphone/Classes/RingtoneManager.h +17 -0
- data/platform/iphone/Classes/RingtoneManager.m +73 -0
- data/platform/iphone/Classes/SimpleMainView.h +30 -0
- data/platform/iphone/Classes/SimpleMainView.m +380 -0
- data/platform/iphone/Classes/TabbedMainView.h +24 -0
- data/platform/iphone/Classes/TabbedMainView.m +202 -0
- data/platform/iphone/Classes/WebView.m +123 -0
- data/platform/iphone/Classes/rho/net/NetRequestImpl.m +2 -2
- data/platform/iphone/Classes/rho/net/sslimpl.cpp +13 -1
- data/platform/iphone/Classes/rho/net/sslimpl.h +1 -1
- data/platform/iphone/Info.plist +1 -1
- data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +44 -0
- data/platform/iphone/main.m +1 -2
- data/platform/iphone/rbuild/iphone.rake +8 -16
- data/platform/iphone/rhoextlib/dosyscall.c +1 -1
- data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +6 -4
- data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +12 -0
- data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +97 -62
- data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +12 -0
- data/platform/osx/Rhodes Launcher/launch.rb +14 -21
- data/platform/shared/common/AppMenu.cpp +122 -0
- data/platform/shared/common/AppMenu.h +46 -0
- data/platform/shared/common/PosixThreadImpl.cpp +1 -1
- data/platform/shared/common/RhoConf.cpp +27 -2
- data/platform/shared/common/RhoConf.h +5 -0
- data/platform/shared/common/RhoFilePath.h +21 -0
- data/platform/shared/common/RhoStd.h +44 -5
- data/platform/shared/common/RhoTime.h +20 -7
- data/platform/shared/common/RhodesApp.cpp +236 -177
- data/platform/shared/common/RhodesApp.h +36 -13
- data/platform/shared/common/SplashScreen.cpp +2 -2
- data/platform/shared/common/StringConverter.h +10 -11
- data/platform/shared/common/rhoparams.c +0 -6
- data/platform/shared/curl/lib/rhossl.c +3 -2
- data/platform/shared/curl/lib/url.c +0 -5
- data/platform/shared/db/DBAdapter.cpp +304 -81
- data/platform/shared/db/DBAdapter.h +24 -7
- data/platform/shared/db/DBAttrManager.cpp +83 -30
- data/platform/shared/db/DBAttrManager.h +6 -0
- data/platform/shared/db/DBResult.h +15 -4
- data/platform/shared/json/JSONIterator.cpp +100 -3
- data/platform/shared/json/JSONIterator.h +28 -3
- data/platform/shared/net/AsyncHttp.cpp +25 -22
- data/platform/shared/net/AsyncHttp.h +10 -6
- data/platform/shared/net/CURLNetRequest.cpp +115 -36
- data/platform/shared/net/CURLNetRequest.h +6 -0
- data/platform/shared/net/HttpServer.cpp +6 -4
- data/platform/shared/net/HttpServer.h +0 -1
- data/platform/shared/net/INetRequest.h +19 -3
- data/platform/shared/net/URI.cpp +2 -2
- data/platform/shared/net/ssl.cpp +2 -2
- data/platform/shared/net/ssl.h +2 -2
- data/platform/shared/ruby/ext/alert/alert.i +14 -2
- data/platform/shared/ruby/ext/alert/alert_wrap.c +40 -20
- data/platform/shared/ruby/ext/asynchttp/asynchttp.i +8 -8
- data/platform/shared/ruby/ext/asynchttp/asynchttp_wrap.c +112 -16
- data/platform/shared/ruby/ext/geolocation/geolocation.i +16 -12
- data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +481 -125
- data/platform/shared/ruby/ext/navbar/navbar.i +20 -0
- data/platform/shared/ruby/ext/navbar/navbar_wrap.c +1859 -0
- data/platform/shared/ruby/ext/rho/extensions.c +1 -1
- data/platform/shared/ruby/ext/rho/rhoruby.c +32 -2
- data/platform/shared/ruby/ext/rho/rhoruby.h +7 -2
- data/platform/shared/ruby/ext/rhoconf/rhoconf.i +4 -0
- data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +31 -0
- data/platform/shared/ruby/ext/sqlite3_api/sqlite3_api_wrap.c +188 -3226
- data/platform/shared/ruby/ext/syncengine/syncengine.i +14 -25
- data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +96 -104
- data/platform/shared/ruby/ext/system/system.i +12 -0
- data/platform/shared/ruby/ext/system/system_wrap.c +101 -7
- data/platform/shared/ruby/ext/webview/webview.i +20 -15
- data/platform/shared/ruby/ext/webview/webview_wrap.c +42 -16
- data/platform/shared/ruby/thread_pthread.c +4 -4
- data/platform/shared/ruby/thread_win32.c +4 -4
- data/platform/shared/ruby/wince/io_wce.c +0 -1
- data/platform/shared/rubyJVM/src/com/rho/FilePath.java +18 -2
- data/platform/shared/rubyJVM/src/com/rho/IRhoRubyHelper.java +1 -0
- data/platform/shared/rubyJVM/src/com/rho/Properties.java +9 -0
- data/platform/shared/rubyJVM/src/com/rho/RhoClassFactory.java +2 -3
- data/platform/shared/rubyJVM/src/com/rho/RhoConf.java +47 -8
- data/platform/shared/rubyJVM/src/com/rho/RhoLogConf.java +1 -0
- data/platform/shared/rubyJVM/src/com/rho/RhoLogFileSink.java +1 -0
- data/platform/shared/rubyJVM/src/com/rho/RhoRuby.java +43 -5
- data/platform/shared/rubyJVM/src/com/rho/RhodesApp.java +98 -3
- data/platform/shared/rubyJVM/src/com/rho/db/DBAdapter.java +460 -175
- data/platform/shared/rubyJVM/src/com/rho/db/DBAttrManager.java +81 -33
- data/platform/shared/rubyJVM/src/com/rho/db/IDBCallback.java +3 -5
- data/platform/shared/rubyJVM/src/com/rho/db/IDBResult.java +2 -0
- data/platform/shared/rubyJVM/src/com/rho/db/IDBStorage.java +2 -0
- data/platform/shared/rubyJVM/src/com/rho/{IFile.java → file/IFile.java} +1 -1
- data/platform/shared/rubyJVM/src/com/rho/{IFileAccess.java → file/IFileAccess.java} +1 -1
- data/platform/shared/rubyJVM/src/com/rho/{IRAFile.java → file/IRAFile.java} +1 -1
- data/platform/{bb/Hsqldb/src/com/rho/db → shared/rubyJVM/src/com/rho/file}/RandomAccessFile.java +1 -2
- data/platform/shared/rubyJVM/src/com/rho/{SimpleFile.java → file/SimpleFile.java} +5 -1
- data/platform/shared/rubyJVM/src/com/rho/net/AsyncHttp.java +23 -18
- data/platform/shared/rubyJVM/src/com/rho/net/NetRequest.java +167 -250
- data/platform/shared/rubyJVM/src/com/rho/net/RhoConnection.java +100 -30
- data/platform/shared/rubyJVM/src/com/rho/net/URI.java +0 -1
- data/platform/shared/rubyJVM/src/com/rho/sync/ClientRegister.java +30 -33
- data/platform/shared/rubyJVM/src/com/rho/sync/ISyncProtocol.java +20 -0
- data/platform/shared/rubyJVM/src/com/rho/sync/JSONEntry.java +5 -0
- data/platform/shared/rubyJVM/src/com/rho/sync/JSONStructIterator.java +74 -0
- data/platform/shared/rubyJVM/src/com/rho/sync/SyncEngine.java +486 -257
- data/platform/shared/rubyJVM/src/com/rho/sync/SyncNotify.java +89 -58
- data/platform/shared/rubyJVM/src/com/rho/sync/SyncProtocol_3.java +79 -0
- data/platform/shared/rubyJVM/src/com/rho/sync/SyncSource.java +634 -495
- data/platform/shared/rubyJVM/src/com/rho/sync/SyncThread.java +74 -90
- data/platform/shared/rubyJVM/src/com/xruby/GeneratedMethods/RubySymbol_Methods.java +1 -0
- data/platform/shared/rubyJVM/src/com/xruby/runtime/builtin/RubyThread.java +6 -0
- data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubyRuntime.java +6 -2
- data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubySymbol.java +17 -1
- data/platform/shared/rubyJVM/src/com/xruby/runtime/lang/RubyValue.java +1 -0
- data/platform/shared/rubyJVM/src/org/json/me/JSONObject.java +3 -0
- data/platform/shared/rubyext/GeoLocation.cpp +23 -0
- data/platform/shared/rubyext/GeoLocation.h +2 -0
- data/platform/shared/rubyext/RhoRuby.cpp +31 -0
- data/platform/shared/rubyext/RhoRuby.h +32 -0
- data/platform/shared/rubyext/System.cpp +14 -3
- data/platform/shared/rubyext/WebView.h +21 -0
- data/platform/shared/sync/ClientRegister.cpp +23 -28
- data/platform/shared/sync/ClientRegister.h +6 -2
- data/platform/shared/sync/ISyncProtocol.h +29 -0
- data/platform/shared/sync/SyncEngine.cpp +450 -190
- data/platform/shared/sync/SyncEngine.h +28 -38
- data/platform/shared/sync/SyncNotify.cpp +43 -41
- data/platform/shared/sync/SyncNotify.h +7 -7
- data/platform/shared/sync/SyncProtocol_3.h +86 -0
- data/platform/shared/sync/SyncSource.cpp +535 -371
- data/platform/shared/sync/SyncSource.h +48 -55
- data/platform/shared/sync/SyncThread.cpp +59 -103
- data/platform/shared/sync/SyncThread.h +10 -23
- data/platform/shared/unzip/unzip.cpp +3 -2
- data/platform/shared/unzip/unzip.h +5 -1
- data/platform/shared/wtl80/include/atlapp.h +10 -10
- data/platform/wm/RhoLib/RhoLib.vcproj +32 -0
- data/platform/wm/build/build_inf.js +40 -3
- data/platform/wm/build/wm.rake +95 -9
- data/platform/wm/rhodes/Alert.cpp +4 -0
- data/platform/wm/rhodes/DateTimePicker.cpp +183 -0
- data/platform/wm/rhodes/DateTimePicker.h +100 -0
- data/platform/wm/rhodes/MainWindow.cpp +222 -209
- data/platform/wm/rhodes/MainWindow.h +28 -35
- data/platform/wm/rhodes/Rhodes.cpp +20 -60
- data/platform/wm/rhodes/Rhodes.rc +41 -7
- data/platform/wm/rhodes/Utils.cpp +65 -0
- data/platform/wm/rhodes/Utils.h +9 -0
- data/platform/wm/rhodes/camera/Camera.cpp +2 -2
- data/platform/wm/rhodes/menubar.cpp +2 -33
- data/platform/wm/rhodes/menubar.h +0 -14
- data/platform/wm/rhodes/resource.h +13 -11
- data/platform/wm/rhodes/rho/net/NetRequest.cpp +16 -35
- data/platform/wm/rhodes/rho/net/NetRequest.h +8 -2
- data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +264 -46
- data/platform/wm/rhodes/rho/net/NetRequestImpl.h +14 -4
- data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.cpp +1 -1
- data/platform/wm/rhodes/rho/rubyext/GeoLocationImpl.h +1 -1
- data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +77 -4
- data/platform/wm/rhodes/rho/rubyext/WebView.cpp +63 -0
- data/platform/wm/rhodes/rhodes.vcproj +20 -66
- data/platform/wm/rhodes/stdafx.h +22 -0
- data/platform/wm/rubylib/rubylib.vcproj +4 -0
- data/platform/wm/syncengine/syncengine.vcproj +8 -0
- data/platform/wm/tools/detool.sln +66 -0
- data/platform/wm/tools/detool/DEMComInterface.tlb +0 -0
- data/platform/wm/tools/detool/ReadMe.txt +33 -0
- data/platform/wm/tools/detool/detool.cpp +559 -0
- data/platform/wm/tools/detool/detool.h +5 -0
- data/platform/wm/tools/detool/detool.vcproj +233 -0
- data/platform/wm/tools/detool/stdafx.cpp +8 -0
- data/platform/wm/tools/detool/stdafx.h +15 -0
- data/platform/wm/tools/detool/targetver.h +24 -0
- data/platform/wm/tools/rhosetup/ReadMe.txt +41 -0
- data/platform/wm/tools/rhosetup/rhosetup.cpp +52 -0
- data/platform/wm/tools/rhosetup/rhosetup.vcproj +641 -0
- data/platform/wm/tools/rhosetup/stdafx.cpp +8 -0
- data/platform/wm/tools/rhosetup/stdafx.h +59 -0
- data/rakefile.rb +33 -10
- data/res/build-tools/db/syncdb.schema +25 -23
- data/res/build-tools/db/syncdb.triggers +1 -1
- data/res/build-tools/detool.exe +0 -0
- data/res/build-tools/rhosetup.dll +0 -0
- data/res/generators/rhogen.rb +27 -22
- data/res/generators/templates/application/app/Settings/controller.rb +3 -1
- data/res/generators/templates/application/app/Settings/home.bb.erb +17 -0
- data/res/generators/templates/application/app/Settings/home.erb +21 -12
- data/res/generators/templates/application/app/Settings/index.bb.erb +32 -0
- data/res/generators/templates/application/app/Settings/index.erb +44 -15
- data/res/generators/templates/application/app/Settings/login.bb.erb +35 -0
- data/res/generators/templates/application/app/Settings/login.erb +29 -30
- data/res/generators/templates/application/app/Settings/reset.bb.erb +15 -0
- data/res/generators/templates/application/app/Settings/reset.erb +16 -13
- data/res/generators/templates/application/app/Settings/wait.bb.erb +3 -0
- data/res/generators/templates/application/app/Settings/wait.erb +4 -4
- data/res/generators/templates/application/app/application.rb +8 -0
- data/res/generators/templates/application/app/helpers/browser_helper.rb +13 -0
- data/res/generators/templates/application/app/index.bb.erb +26 -0
- data/res/generators/templates/application/app/index.erb +21 -12
- data/res/generators/templates/application/app/layout.erb +9 -11
- data/res/generators/templates/application/public/css/android.css +285 -0
- data/res/generators/templates/application/public/css/blackberry.css +85 -78
- data/res/generators/templates/application/public/css/iphone.css +286 -296
- data/res/generators/templates/application/public/css/webkit.css +34 -0
- data/res/generators/templates/application/public/css/windows_mobile.css +208 -0
- data/res/generators/templates/application/public/icons/Read me first - license.txt +14 -0
- data/res/generators/templates/application/public/icons/about.png +0 -0
- data/res/generators/templates/application/public/icons/airplane.png +0 -0
- data/res/generators/templates/application/public/icons/baby.png +0 -0
- data/res/generators/templates/application/public/icons/badge.png +0 -0
- data/res/generators/templates/application/public/icons/bandaid.png +0 -0
- data/res/generators/templates/application/public/icons/bar-chart.png +0 -0
- data/res/generators/templates/application/public/icons/battery.png +0 -0
- data/res/generators/templates/application/public/icons/beaker.png +0 -0
- data/res/generators/templates/application/public/icons/beaker2.png +0 -0
- data/res/generators/templates/application/public/icons/beermug.png +0 -0
- data/res/generators/templates/application/public/icons/bird.png +0 -0
- data/res/generators/templates/application/public/icons/book.png +0 -0
- data/res/generators/templates/application/public/icons/bookmark.png +0 -0
- data/res/generators/templates/application/public/icons/brightness.png +0 -0
- data/res/generators/templates/application/public/icons/bug.png +0 -0
- data/res/generators/templates/application/public/icons/cabinet.png +0 -0
- data/res/generators/templates/application/public/icons/calendar.png +0 -0
- data/res/generators/templates/application/public/icons/camera.png +0 -0
- data/res/generators/templates/application/public/icons/changeName.rb +22 -0
- data/res/generators/templates/application/public/icons/chat2.png +0 -0
- data/res/generators/templates/application/public/icons/chicken.png +0 -0
- data/res/generators/templates/application/public/icons/clock.png +0 -0
- data/res/generators/templates/application/public/icons/cloud.png +0 -0
- data/res/generators/templates/application/public/icons/coffee.png +0 -0
- data/res/generators/templates/application/public/icons/compass.png +0 -0
- data/res/generators/templates/application/public/icons/contrast.png +0 -0
- data/res/generators/templates/application/public/icons/dashboard.png +0 -0
- data/res/generators/templates/application/public/icons/display.png +0 -0
- data/res/generators/templates/application/public/icons/dogpaw.png +0 -0
- data/res/generators/templates/application/public/icons/download.png +0 -0
- data/res/generators/templates/application/public/icons/dumbbell.png +0 -0
- data/res/generators/templates/application/public/icons/ekg.png +0 -0
- data/res/generators/templates/application/public/icons/envelope.png +0 -0
- data/res/generators/templates/application/public/icons/equalizer.png +0 -0
- data/res/generators/templates/application/public/icons/eye.png +0 -0
- data/res/generators/templates/application/public/icons/film-roll.png +0 -0
- data/res/generators/templates/application/public/icons/flag.png +0 -0
- data/res/generators/templates/application/public/icons/fork-and-knife.png +0 -0
- data/res/generators/templates/application/public/icons/fuel.png +0 -0
- data/res/generators/templates/application/public/icons/gameplan.png +0 -0
- data/res/generators/templates/application/public/icons/gear.png +0 -0
- data/res/generators/templates/application/public/icons/gear2.png +0 -0
- data/res/generators/templates/application/public/icons/gift.png +0 -0
- data/res/generators/templates/application/public/icons/heart.png +0 -0
- data/res/generators/templates/application/public/icons/house.png +0 -0
- data/res/generators/templates/application/public/icons/inbox.png +0 -0
- data/res/generators/templates/application/public/icons/index-cards.png +0 -0
- data/res/generators/templates/application/public/icons/iphone.png +0 -0
- data/res/generators/templates/application/public/icons/ipod.png +0 -0
- data/res/generators/templates/application/public/icons/key.png +0 -0
- data/res/generators/templates/application/public/icons/lifebuoy.png +0 -0
- data/res/generators/templates/application/public/icons/lightbulb.png +0 -0
- data/res/generators/templates/application/public/icons/line-chart.png +0 -0
- data/res/generators/templates/application/public/icons/location.png +0 -0
- data/res/generators/templates/application/public/icons/lock.png +0 -0
- data/res/generators/templates/application/public/icons/loopback.png +0 -0
- data/res/generators/templates/application/public/icons/magnifying-glass.png +0 -0
- data/res/generators/templates/application/public/icons/map-marker.png +0 -0
- data/res/generators/templates/application/public/icons/map.png +0 -0
- data/res/generators/templates/application/public/icons/medical-bag.png +0 -0
- data/res/generators/templates/application/public/icons/medical.png +0 -0
- data/res/generators/templates/application/public/icons/microphone.png +0 -0
- data/res/generators/templates/application/public/icons/movie1.png +0 -0
- data/res/generators/templates/application/public/icons/movie2.png +0 -0
- data/res/generators/templates/application/public/icons/network.png +0 -0
- data/res/generators/templates/application/public/icons/note.png +0 -0
- data/res/generators/templates/application/public/icons/outlet.png +0 -0
- data/res/generators/templates/application/public/icons/palette.png +0 -0
- data/res/generators/templates/application/public/icons/paperclip.png +0 -0
- data/res/generators/templates/application/public/icons/phone.png +0 -0
- data/res/generators/templates/application/public/icons/photos.png +0 -0
- data/res/generators/templates/application/public/icons/piano.png +0 -0
- data/res/generators/templates/application/public/icons/picture-frame.png +0 -0
- data/res/generators/templates/application/public/icons/pill.png +0 -0
- data/res/generators/templates/application/public/icons/pin.png +0 -0
- data/res/generators/templates/application/public/icons/pinetree.png +0 -0
- data/res/generators/templates/application/public/icons/planet.png +0 -0
- data/res/generators/templates/application/public/icons/puzzle.png +0 -0
- data/res/generators/templates/application/public/icons/radar.png +0 -0
- data/res/generators/templates/application/public/icons/redo.png +0 -0
- data/res/generators/templates/application/public/icons/refresh.png +0 -0
- data/res/generators/templates/application/public/icons/runner.png +0 -0
- data/res/generators/templates/application/public/icons/shoebox.png +0 -0
- data/res/generators/templates/application/public/icons/shopping-bag.png +0 -0
- data/res/generators/templates/application/public/icons/shopping-cart.png +0 -0
- data/res/generators/templates/application/public/icons/shuffle.png +0 -0
- data/res/generators/templates/application/public/icons/signpost.png +0 -0
- data/res/generators/templates/application/public/icons/skull-n-crossbones.png +0 -0
- data/res/generators/templates/application/public/icons/skull.png +0 -0
- data/res/generators/templates/application/public/icons/sliders.png +0 -0
- data/res/generators/templates/application/public/icons/spraycan.png +0 -0
- data/res/generators/templates/application/public/icons/squiggle.png +0 -0
- data/res/generators/templates/application/public/icons/star.png +0 -0
- data/res/generators/templates/application/public/icons/stopwatch.png +0 -0
- data/res/generators/templates/application/public/icons/suitcase.png +0 -0
- data/res/generators/templates/application/public/icons/tag.png +0 -0
- data/res/generators/templates/application/public/icons/tags.png +0 -0
- data/res/generators/templates/application/public/icons/target.png +0 -0
- data/res/generators/templates/application/public/icons/testtube.png +0 -0
- data/res/generators/templates/application/public/icons/thermometer.png +0 -0
- data/res/generators/templates/application/public/icons/toolbox.png +0 -0
- data/res/generators/templates/application/public/icons/trophy.png +0 -0
- data/res/generators/templates/application/public/icons/tshirt.png +0 -0
- data/res/generators/templates/application/public/icons/tv.png +0 -0
- data/res/generators/templates/application/public/icons/umbrella.png +0 -0
- data/res/generators/templates/application/public/icons/walk.png +0 -0
- data/res/generators/templates/application/public/icons/weather.png +0 -0
- data/res/generators/templates/application/public/icons/widescreen.png +0 -0
- data/res/generators/templates/application/public/icons/wineglass.png +0 -0
- data/res/generators/templates/application/public/icons/zap.png +0 -0
- data/res/generators/templates/application/public/images/android/btn_check_off.png +0 -0
- data/res/generators/templates/application/public/images/android/btn_check_on.png +0 -0
- data/res/generators/templates/application/public/images/android/btn_radio_off.png +0 -0
- data/res/generators/templates/application/public/images/android/btn_radio_on.png +0 -0
- data/res/generators/templates/application/public/images/android/ic_menu_more.png +0 -0
- data/res/generators/templates/application/public/images/iphone/disclosure.png +0 -0
- data/res/generators/templates/application/public/images/iphone/disclosure_detail.png +0 -0
- data/res/generators/templates/application/public/images/iphone/radiobutton.png +0 -0
- data/res/generators/templates/application/public/images/iphone/select.png +0 -0
- data/res/generators/templates/application/public/images/iphone/switch.png +0 -0
- data/res/generators/templates/application/public/images/listArrow.png +0 -0
- data/res/generators/templates/application/public/images/listArrowDown.png +0 -0
- data/res/generators/templates/model/controller.rb +2 -0
- data/res/generators/templates/model/edit.bb.erb +24 -0
- data/res/generators/templates/model/edit.erb +21 -25
- data/res/generators/templates/model/index.bb.erb +21 -0
- data/res/generators/templates/model/index.erb +28 -14
- data/res/generators/templates/model/new.bb.erb +24 -0
- data/res/generators/templates/model/new.erb +20 -20
- data/res/generators/templates/model/show.bb.erb +21 -0
- data/res/generators/templates/model/show.erb +15 -15
- data/rhobuild.yml +37 -0
- data/rhodes.gemspec +1 -1
- data/spec/framework_spec/app/Account/config.rb +57 -1
- data/spec/framework_spec/app/Case/config.rb +1 -1
- data/spec/framework_spec/app/Customer/config.rb +1 -1
- data/spec/framework_spec/app/Product/config.rb +15 -1
- data/spec/framework_spec/app/spec/fixtures/object_values.txt +90 -90
- data/spec/framework_spec/app/spec/pagination/fixtures/object_values.txt +91 -91
- data/spec/framework_spec/app/spec/rho_spec.rb +1 -1
- data/spec/framework_spec/app/spec/rhom_object_spec.rb +47 -28
- data/spec/framework_spec/app/spec/rhom_spec.rb +8 -8
- data/spec/framework_spec/app/spec/spec_helper.rb +13 -5
- data/spec/framework_spec/app/spec_runner.rb +5 -4
- data/spec/framework_spec/public/css/base.css +0 -1
- data/spec/framework_spec/public/css/iphone.css +0 -1
- data/spec/framework_spec/rhoconfig.txt +3 -1
- metadata +220 -37
- data/platform/bb/rhodes/src/rhomobile/WebView.java +0 -90
- data/platform/iphone/Classes/BarItem.h +0 -27
- data/platform/iphone/Classes/BarItem.m +0 -32
- data/platform/iphone/Classes/JSString.h +0 -12
- data/platform/iphone/Classes/JSString.m +0 -7
- data/platform/iphone/Classes/RhoRunnerAppDelegate.h +0 -48
- data/platform/iphone/Classes/RhoRunnerAppDelegate.m +0 -617
- data/platform/iphone/Classes/Server/ServerHost.h +0 -81
- data/platform/iphone/Classes/Server/ServerHost.m +0 -597
- data/platform/iphone/Classes/Server/WebViewUrl.h +0 -13
- data/platform/iphone/Classes/Server/WebViewUrl.m +0 -8
- data/platform/iphone/Classes/TabBarDelegate.h +0 -39
- data/platform/iphone/Classes/TabBarDelegate.m +0 -151
- data/platform/iphone/Classes/Utils/unzip.cpp +0 -4328
- data/platform/iphone/Classes/Utils/unzip.h +0 -234
- data/platform/iphone/Classes/WebViewController.h +0 -59
- data/platform/iphone/Classes/WebViewController.m +0 -472
- data/platform/wm/rhodes/GetURLDialog.cpp +0 -64
- data/platform/wm/rhodes/GetURLDialog.h +0 -39
- data/res/generators/templates/application/public/css/base.css +0 -39
- data/res/generators/templates/application/public/css/rho.css +0 -3
- data/res/generators/templates/application/public/css/xhtml.css +0 -114
- data/spec/framework_spec/app/Question/config.rb +0 -3
- data/spec/generator_spec/source_generator_spec.rb +0 -27
@@ -0,0 +1,233 @@
|
|
1
|
+
<?xml version="1.0" encoding="windows-1251"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="9,00"
|
5
|
+
Name="detool"
|
6
|
+
ProjectGUID="{92691F2A-E212-4D72-B09B-0A03DEE43C9D}"
|
7
|
+
RootNamespace="detool"
|
8
|
+
Keyword="Win32Proj"
|
9
|
+
TargetFrameworkVersion="196613"
|
10
|
+
>
|
11
|
+
<Platforms>
|
12
|
+
<Platform
|
13
|
+
Name="Win32"
|
14
|
+
/>
|
15
|
+
</Platforms>
|
16
|
+
<ToolFiles>
|
17
|
+
</ToolFiles>
|
18
|
+
<Configurations>
|
19
|
+
<Configuration
|
20
|
+
Name="Debug|Win32"
|
21
|
+
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
22
|
+
IntermediateDirectory="$(ConfigurationName)"
|
23
|
+
ConfigurationType="1"
|
24
|
+
UseOfATL="1"
|
25
|
+
CharacterSet="1"
|
26
|
+
>
|
27
|
+
<Tool
|
28
|
+
Name="VCPreBuildEventTool"
|
29
|
+
/>
|
30
|
+
<Tool
|
31
|
+
Name="VCCustomBuildTool"
|
32
|
+
/>
|
33
|
+
<Tool
|
34
|
+
Name="VCXMLDataGeneratorTool"
|
35
|
+
/>
|
36
|
+
<Tool
|
37
|
+
Name="VCWebServiceProxyGeneratorTool"
|
38
|
+
/>
|
39
|
+
<Tool
|
40
|
+
Name="VCMIDLTool"
|
41
|
+
/>
|
42
|
+
<Tool
|
43
|
+
Name="VCCLCompilerTool"
|
44
|
+
Optimization="0"
|
45
|
+
AdditionalIncludeDirectories=""C:\Program Files\Windows Mobile 6 SDK\Activesync\inc""
|
46
|
+
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
47
|
+
MinimalRebuild="true"
|
48
|
+
BasicRuntimeChecks="3"
|
49
|
+
RuntimeLibrary="3"
|
50
|
+
UsePrecompiledHeader="2"
|
51
|
+
WarningLevel="3"
|
52
|
+
DebugInformationFormat="4"
|
53
|
+
/>
|
54
|
+
<Tool
|
55
|
+
Name="VCManagedResourceCompilerTool"
|
56
|
+
/>
|
57
|
+
<Tool
|
58
|
+
Name="VCResourceCompilerTool"
|
59
|
+
/>
|
60
|
+
<Tool
|
61
|
+
Name="VCPreLinkEventTool"
|
62
|
+
/>
|
63
|
+
<Tool
|
64
|
+
Name="VCLinkerTool"
|
65
|
+
AdditionalDependencies="rapi.lib"
|
66
|
+
LinkIncremental="2"
|
67
|
+
GenerateDebugInformation="true"
|
68
|
+
SubSystem="1"
|
69
|
+
TargetMachine="1"
|
70
|
+
/>
|
71
|
+
<Tool
|
72
|
+
Name="VCALinkTool"
|
73
|
+
/>
|
74
|
+
<Tool
|
75
|
+
Name="VCManifestTool"
|
76
|
+
/>
|
77
|
+
<Tool
|
78
|
+
Name="VCXDCMakeTool"
|
79
|
+
/>
|
80
|
+
<Tool
|
81
|
+
Name="VCBscMakeTool"
|
82
|
+
/>
|
83
|
+
<Tool
|
84
|
+
Name="VCFxCopTool"
|
85
|
+
/>
|
86
|
+
<Tool
|
87
|
+
Name="VCAppVerifierTool"
|
88
|
+
/>
|
89
|
+
<Tool
|
90
|
+
Name="VCPostBuildEventTool"
|
91
|
+
/>
|
92
|
+
</Configuration>
|
93
|
+
<Configuration
|
94
|
+
Name="Release|Win32"
|
95
|
+
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
96
|
+
IntermediateDirectory="$(ConfigurationName)"
|
97
|
+
ConfigurationType="1"
|
98
|
+
UseOfATL="1"
|
99
|
+
CharacterSet="1"
|
100
|
+
WholeProgramOptimization="1"
|
101
|
+
>
|
102
|
+
<Tool
|
103
|
+
Name="VCPreBuildEventTool"
|
104
|
+
/>
|
105
|
+
<Tool
|
106
|
+
Name="VCCustomBuildTool"
|
107
|
+
/>
|
108
|
+
<Tool
|
109
|
+
Name="VCXMLDataGeneratorTool"
|
110
|
+
/>
|
111
|
+
<Tool
|
112
|
+
Name="VCWebServiceProxyGeneratorTool"
|
113
|
+
/>
|
114
|
+
<Tool
|
115
|
+
Name="VCMIDLTool"
|
116
|
+
/>
|
117
|
+
<Tool
|
118
|
+
Name="VCCLCompilerTool"
|
119
|
+
Optimization="2"
|
120
|
+
EnableIntrinsicFunctions="true"
|
121
|
+
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
122
|
+
RuntimeLibrary="2"
|
123
|
+
EnableFunctionLevelLinking="true"
|
124
|
+
UsePrecompiledHeader="2"
|
125
|
+
WarningLevel="3"
|
126
|
+
DebugInformationFormat="3"
|
127
|
+
/>
|
128
|
+
<Tool
|
129
|
+
Name="VCManagedResourceCompilerTool"
|
130
|
+
/>
|
131
|
+
<Tool
|
132
|
+
Name="VCResourceCompilerTool"
|
133
|
+
/>
|
134
|
+
<Tool
|
135
|
+
Name="VCPreLinkEventTool"
|
136
|
+
/>
|
137
|
+
<Tool
|
138
|
+
Name="VCLinkerTool"
|
139
|
+
LinkIncremental="1"
|
140
|
+
GenerateDebugInformation="true"
|
141
|
+
SubSystem="1"
|
142
|
+
OptimizeReferences="2"
|
143
|
+
EnableCOMDATFolding="2"
|
144
|
+
TargetMachine="1"
|
145
|
+
/>
|
146
|
+
<Tool
|
147
|
+
Name="VCALinkTool"
|
148
|
+
/>
|
149
|
+
<Tool
|
150
|
+
Name="VCManifestTool"
|
151
|
+
/>
|
152
|
+
<Tool
|
153
|
+
Name="VCXDCMakeTool"
|
154
|
+
/>
|
155
|
+
<Tool
|
156
|
+
Name="VCBscMakeTool"
|
157
|
+
/>
|
158
|
+
<Tool
|
159
|
+
Name="VCFxCopTool"
|
160
|
+
/>
|
161
|
+
<Tool
|
162
|
+
Name="VCAppVerifierTool"
|
163
|
+
/>
|
164
|
+
<Tool
|
165
|
+
Name="VCPostBuildEventTool"
|
166
|
+
/>
|
167
|
+
</Configuration>
|
168
|
+
</Configurations>
|
169
|
+
<References>
|
170
|
+
</References>
|
171
|
+
<Files>
|
172
|
+
<Filter
|
173
|
+
Name="Source Files"
|
174
|
+
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
175
|
+
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
176
|
+
>
|
177
|
+
<File
|
178
|
+
RelativePath=".\detool.cpp"
|
179
|
+
>
|
180
|
+
</File>
|
181
|
+
<File
|
182
|
+
RelativePath=".\stdafx.cpp"
|
183
|
+
>
|
184
|
+
<FileConfiguration
|
185
|
+
Name="Debug|Win32"
|
186
|
+
>
|
187
|
+
<Tool
|
188
|
+
Name="VCCLCompilerTool"
|
189
|
+
UsePrecompiledHeader="1"
|
190
|
+
/>
|
191
|
+
</FileConfiguration>
|
192
|
+
<FileConfiguration
|
193
|
+
Name="Release|Win32"
|
194
|
+
>
|
195
|
+
<Tool
|
196
|
+
Name="VCCLCompilerTool"
|
197
|
+
UsePrecompiledHeader="1"
|
198
|
+
/>
|
199
|
+
</FileConfiguration>
|
200
|
+
</File>
|
201
|
+
</Filter>
|
202
|
+
<Filter
|
203
|
+
Name="Header Files"
|
204
|
+
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
205
|
+
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
206
|
+
>
|
207
|
+
<File
|
208
|
+
RelativePath=".\detool.h"
|
209
|
+
>
|
210
|
+
</File>
|
211
|
+
<File
|
212
|
+
RelativePath=".\stdafx.h"
|
213
|
+
>
|
214
|
+
</File>
|
215
|
+
<File
|
216
|
+
RelativePath=".\targetver.h"
|
217
|
+
>
|
218
|
+
</File>
|
219
|
+
</Filter>
|
220
|
+
<Filter
|
221
|
+
Name="Resource Files"
|
222
|
+
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
223
|
+
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
224
|
+
>
|
225
|
+
</Filter>
|
226
|
+
<File
|
227
|
+
RelativePath=".\ReadMe.txt"
|
228
|
+
>
|
229
|
+
</File>
|
230
|
+
</Files>
|
231
|
+
<Globals>
|
232
|
+
</Globals>
|
233
|
+
</VisualStudioProject>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
// stdafx.cpp : source file that includes just the standard includes
|
2
|
+
// detool.pch will be the pre-compiled header
|
3
|
+
// stdafx.obj will contain the pre-compiled type information
|
4
|
+
|
5
|
+
#include "stdafx.h"
|
6
|
+
|
7
|
+
// TODO: reference any additional headers you need in STDAFX.H
|
8
|
+
// and not in this file
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "targetver.h"
|
4
|
+
|
5
|
+
#include <stdio.h>
|
6
|
+
#include <tchar.h>
|
7
|
+
|
8
|
+
|
9
|
+
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
|
10
|
+
|
11
|
+
#include <atlbase.h>
|
12
|
+
#include <atlstr.h>
|
13
|
+
|
14
|
+
//Device Emulator interface
|
15
|
+
#import "DEMComInterface.tlb" no_namespace raw_interfaces_only
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
// The following macros define the minimum required platform. The minimum required platform
|
4
|
+
// is the earliest version of Windows, Internet Explorer etc. that has the necessary features to run
|
5
|
+
// your application. The macros work by enabling all features available on platform versions up to and
|
6
|
+
// including the version specified.
|
7
|
+
|
8
|
+
// Modify the following defines if you have to target a platform prior to the ones specified below.
|
9
|
+
// Refer to MSDN for the latest info on corresponding values for different platforms.
|
10
|
+
#ifndef WINVER // Specifies that the minimum required platform is Windows Vista.
|
11
|
+
#define WINVER 0x0600 // Change this to the appropriate value to target other versions of Windows.
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
|
15
|
+
#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows.
|
16
|
+
#endif
|
17
|
+
|
18
|
+
#ifndef _WIN32_WINDOWS // Specifies that the minimum required platform is Windows 98.
|
19
|
+
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifndef _WIN32_IE // Specifies that the minimum required platform is Internet Explorer 7.0.
|
23
|
+
#define _WIN32_IE 0x0700 // Change this to the appropriate value to target other versions of IE.
|
24
|
+
#endif
|
@@ -0,0 +1,41 @@
|
|
1
|
+
========================================================================
|
2
|
+
DYNAMIC LINK LIBRARY : rhosetup Project Overview
|
3
|
+
========================================================================
|
4
|
+
|
5
|
+
AppWizard has created this rhosetup DLL for you.
|
6
|
+
|
7
|
+
This file contains a summary of what you will find in each of the files that
|
8
|
+
make up your rhosetup application.
|
9
|
+
|
10
|
+
|
11
|
+
rhosetup.vcproj
|
12
|
+
This is the main project file for VC++ projects generated using an Application Wizard.
|
13
|
+
It contains information about the version of Visual C++ that generated the file, and
|
14
|
+
information about the platforms, configurations, and project features selected with the
|
15
|
+
Application Wizard.
|
16
|
+
|
17
|
+
rhosetup.cpp
|
18
|
+
This is the main DLL source file.
|
19
|
+
|
20
|
+
When created, this DLL does not export any symbols. As a result, it
|
21
|
+
will not produce a .lib file when it is built. If you wish this project
|
22
|
+
to be a project dependency of some other project, you will either need to
|
23
|
+
add code to export some symbols from the DLL so that an export library
|
24
|
+
will be produced, or you can set the Ignore Input Library property to Yes
|
25
|
+
on the General propert page of the Linker folder in the project's Property
|
26
|
+
Pages dialog box.
|
27
|
+
|
28
|
+
/////////////////////////////////////////////////////////////////////////////
|
29
|
+
Other standard files:
|
30
|
+
|
31
|
+
StdAfx.h, StdAfx.cpp
|
32
|
+
These files are used to build a precompiled header (PCH) file
|
33
|
+
named rhosetup.pch and a precompiled types file named StdAfx.obj.
|
34
|
+
|
35
|
+
/////////////////////////////////////////////////////////////////////////////
|
36
|
+
Other notes:
|
37
|
+
|
38
|
+
AppWizard uses "TODO:" comments to indicate parts of the source code you
|
39
|
+
should add to or customize.
|
40
|
+
|
41
|
+
/////////////////////////////////////////////////////////////////////////////s
|
@@ -0,0 +1,52 @@
|
|
1
|
+
// rhosetup.cpp : Defines the entry point for the DLL application.
|
2
|
+
//
|
3
|
+
|
4
|
+
#include "stdafx.h"
|
5
|
+
|
6
|
+
// Exported function prototypes
|
7
|
+
#ifdef __cplusplus
|
8
|
+
extern "C" {
|
9
|
+
#endif
|
10
|
+
__declspec(dllexport) INT rhoCabSetup (DWORD, BYTE *, DWORD *, BYTE **, PVOID);
|
11
|
+
#ifdef __cplusplus
|
12
|
+
}
|
13
|
+
#endif
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
BOOL APIENTRY DllMain( HANDLE hModule,
|
18
|
+
DWORD ul_reason_for_call,
|
19
|
+
LPVOID lpReserved
|
20
|
+
)
|
21
|
+
{
|
22
|
+
return TRUE;
|
23
|
+
}
|
24
|
+
|
25
|
+
INT rhoCabSetup (DWORD inSize, BYTE *inBuf, DWORD *, BYTE **, PVOID)
|
26
|
+
{
|
27
|
+
PROCESS_INFORMATION pi;
|
28
|
+
BOOL res = FALSE;
|
29
|
+
DWORD exit_code = -1;
|
30
|
+
|
31
|
+
printf ("Trying to install cab\n");
|
32
|
+
|
33
|
+
res = CreateProcess( _T("\\windows\\wceload.exe"), (LPWSTR )inBuf, 0, 0, 0, 0, 0, 0, 0, &pi);
|
34
|
+
if (res) {
|
35
|
+
WaitForSingleObject(pi.hProcess, INFINITE);
|
36
|
+
|
37
|
+
GetExitCodeProcess(pi.hProcess, &exit_code);
|
38
|
+
printf ("Done. Exit code == %d\n", exit_code);
|
39
|
+
|
40
|
+
CloseHandle(pi.hProcess);
|
41
|
+
CloseHandle(pi.hThread);
|
42
|
+
|
43
|
+
LocalFree(inBuf);
|
44
|
+
if(exit_code != EXIT_SUCCESS)
|
45
|
+
return -1;
|
46
|
+
return 1;
|
47
|
+
}
|
48
|
+
|
49
|
+
LocalFree(inBuf);
|
50
|
+
printf ("Failed\n");
|
51
|
+
return -1;
|
52
|
+
}
|
@@ -0,0 +1,641 @@
|
|
1
|
+
<?xml version="1.0" encoding="windows-1251"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="9,00"
|
5
|
+
Name="rhosetup"
|
6
|
+
ProjectGUID="{F62EA982-989B-40BC-A1F8-F433A11C3A50}"
|
7
|
+
Keyword="Win32Proj"
|
8
|
+
TargetFrameworkVersion="196613"
|
9
|
+
>
|
10
|
+
<Platforms>
|
11
|
+
<Platform
|
12
|
+
Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
13
|
+
/>
|
14
|
+
<Platform
|
15
|
+
Name="Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
16
|
+
/>
|
17
|
+
<Platform
|
18
|
+
Name="Windows Mobile 6 Professional SDK (ARMV4I)"
|
19
|
+
/>
|
20
|
+
</Platforms>
|
21
|
+
<ToolFiles>
|
22
|
+
</ToolFiles>
|
23
|
+
<Configurations>
|
24
|
+
<Configuration
|
25
|
+
Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
26
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
27
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
28
|
+
ConfigurationType="2"
|
29
|
+
CharacterSet="1"
|
30
|
+
>
|
31
|
+
<Tool
|
32
|
+
Name="VCPreBuildEventTool"
|
33
|
+
/>
|
34
|
+
<Tool
|
35
|
+
Name="VCCustomBuildTool"
|
36
|
+
/>
|
37
|
+
<Tool
|
38
|
+
Name="VCXMLDataGeneratorTool"
|
39
|
+
/>
|
40
|
+
<Tool
|
41
|
+
Name="VCWebServiceProxyGeneratorTool"
|
42
|
+
/>
|
43
|
+
<Tool
|
44
|
+
Name="VCMIDLTool"
|
45
|
+
/>
|
46
|
+
<Tool
|
47
|
+
Name="VCCLCompilerTool"
|
48
|
+
ExecutionBucket="7"
|
49
|
+
Optimization="0"
|
50
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
51
|
+
MinimalRebuild="true"
|
52
|
+
RuntimeLibrary="1"
|
53
|
+
UsePrecompiledHeader="2"
|
54
|
+
WarningLevel="3"
|
55
|
+
DebugInformationFormat="3"
|
56
|
+
/>
|
57
|
+
<Tool
|
58
|
+
Name="VCManagedResourceCompilerTool"
|
59
|
+
/>
|
60
|
+
<Tool
|
61
|
+
Name="VCResourceCompilerTool"
|
62
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
63
|
+
Culture="1033"
|
64
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
65
|
+
/>
|
66
|
+
<Tool
|
67
|
+
Name="VCPreLinkEventTool"
|
68
|
+
/>
|
69
|
+
<Tool
|
70
|
+
Name="VCLinkerTool"
|
71
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
72
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
73
|
+
LinkIncremental="2"
|
74
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
75
|
+
GenerateDebugInformation="true"
|
76
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
77
|
+
SubSystem="0"
|
78
|
+
StackReserveSize="65536"
|
79
|
+
StackCommitSize="4096"
|
80
|
+
RandomizedBaseAddress="1"
|
81
|
+
DataExecutionPrevention="0"
|
82
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
83
|
+
/>
|
84
|
+
<Tool
|
85
|
+
Name="VCALinkTool"
|
86
|
+
/>
|
87
|
+
<Tool
|
88
|
+
Name="VCXDCMakeTool"
|
89
|
+
/>
|
90
|
+
<Tool
|
91
|
+
Name="VCBscMakeTool"
|
92
|
+
/>
|
93
|
+
<Tool
|
94
|
+
Name="VCFxCopTool"
|
95
|
+
/>
|
96
|
+
<Tool
|
97
|
+
Name="VCCodeSignTool"
|
98
|
+
/>
|
99
|
+
<Tool
|
100
|
+
Name="VCPostBuildEventTool"
|
101
|
+
/>
|
102
|
+
<DeploymentTool
|
103
|
+
ForceDirty="-1"
|
104
|
+
RemoteDirectory=""
|
105
|
+
RegisterOutput="0"
|
106
|
+
AdditionalFiles=""
|
107
|
+
/>
|
108
|
+
<DebuggerTool
|
109
|
+
/>
|
110
|
+
</Configuration>
|
111
|
+
<Configuration
|
112
|
+
Name="Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
113
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
114
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
115
|
+
ConfigurationType="2"
|
116
|
+
CharacterSet="1"
|
117
|
+
>
|
118
|
+
<Tool
|
119
|
+
Name="VCPreBuildEventTool"
|
120
|
+
/>
|
121
|
+
<Tool
|
122
|
+
Name="VCCustomBuildTool"
|
123
|
+
/>
|
124
|
+
<Tool
|
125
|
+
Name="VCXMLDataGeneratorTool"
|
126
|
+
/>
|
127
|
+
<Tool
|
128
|
+
Name="VCWebServiceProxyGeneratorTool"
|
129
|
+
/>
|
130
|
+
<Tool
|
131
|
+
Name="VCMIDLTool"
|
132
|
+
/>
|
133
|
+
<Tool
|
134
|
+
Name="VCCLCompilerTool"
|
135
|
+
ExecutionBucket="7"
|
136
|
+
Optimization="0"
|
137
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
138
|
+
MinimalRebuild="true"
|
139
|
+
RuntimeLibrary="1"
|
140
|
+
UsePrecompiledHeader="2"
|
141
|
+
WarningLevel="3"
|
142
|
+
DebugInformationFormat="3"
|
143
|
+
/>
|
144
|
+
<Tool
|
145
|
+
Name="VCManagedResourceCompilerTool"
|
146
|
+
/>
|
147
|
+
<Tool
|
148
|
+
Name="VCResourceCompilerTool"
|
149
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
150
|
+
Culture="1033"
|
151
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
152
|
+
/>
|
153
|
+
<Tool
|
154
|
+
Name="VCPreLinkEventTool"
|
155
|
+
/>
|
156
|
+
<Tool
|
157
|
+
Name="VCLinkerTool"
|
158
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
159
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
160
|
+
LinkIncremental="2"
|
161
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
162
|
+
GenerateDebugInformation="true"
|
163
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
164
|
+
SubSystem="0"
|
165
|
+
StackReserveSize="65536"
|
166
|
+
StackCommitSize="4096"
|
167
|
+
RandomizedBaseAddress="1"
|
168
|
+
DataExecutionPrevention="0"
|
169
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
170
|
+
/>
|
171
|
+
<Tool
|
172
|
+
Name="VCALinkTool"
|
173
|
+
/>
|
174
|
+
<Tool
|
175
|
+
Name="VCXDCMakeTool"
|
176
|
+
/>
|
177
|
+
<Tool
|
178
|
+
Name="VCBscMakeTool"
|
179
|
+
/>
|
180
|
+
<Tool
|
181
|
+
Name="VCFxCopTool"
|
182
|
+
/>
|
183
|
+
<Tool
|
184
|
+
Name="VCCodeSignTool"
|
185
|
+
/>
|
186
|
+
<Tool
|
187
|
+
Name="VCPostBuildEventTool"
|
188
|
+
/>
|
189
|
+
<DeploymentTool
|
190
|
+
ForceDirty="-1"
|
191
|
+
RemoteDirectory=""
|
192
|
+
RegisterOutput="0"
|
193
|
+
AdditionalFiles=""
|
194
|
+
/>
|
195
|
+
<DebuggerTool
|
196
|
+
/>
|
197
|
+
</Configuration>
|
198
|
+
<Configuration
|
199
|
+
Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
200
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
201
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
202
|
+
ConfigurationType="2"
|
203
|
+
CharacterSet="1"
|
204
|
+
>
|
205
|
+
<Tool
|
206
|
+
Name="VCPreBuildEventTool"
|
207
|
+
/>
|
208
|
+
<Tool
|
209
|
+
Name="VCCustomBuildTool"
|
210
|
+
/>
|
211
|
+
<Tool
|
212
|
+
Name="VCXMLDataGeneratorTool"
|
213
|
+
/>
|
214
|
+
<Tool
|
215
|
+
Name="VCWebServiceProxyGeneratorTool"
|
216
|
+
/>
|
217
|
+
<Tool
|
218
|
+
Name="VCMIDLTool"
|
219
|
+
/>
|
220
|
+
<Tool
|
221
|
+
Name="VCCLCompilerTool"
|
222
|
+
ExecutionBucket="7"
|
223
|
+
Optimization="0"
|
224
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
225
|
+
MinimalRebuild="true"
|
226
|
+
RuntimeLibrary="1"
|
227
|
+
UsePrecompiledHeader="2"
|
228
|
+
WarningLevel="3"
|
229
|
+
DebugInformationFormat="3"
|
230
|
+
/>
|
231
|
+
<Tool
|
232
|
+
Name="VCManagedResourceCompilerTool"
|
233
|
+
/>
|
234
|
+
<Tool
|
235
|
+
Name="VCResourceCompilerTool"
|
236
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
237
|
+
Culture="1033"
|
238
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
239
|
+
/>
|
240
|
+
<Tool
|
241
|
+
Name="VCPreLinkEventTool"
|
242
|
+
/>
|
243
|
+
<Tool
|
244
|
+
Name="VCLinkerTool"
|
245
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
246
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
247
|
+
LinkIncremental="2"
|
248
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
249
|
+
GenerateDebugInformation="true"
|
250
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
251
|
+
SubSystem="0"
|
252
|
+
StackReserveSize="65536"
|
253
|
+
StackCommitSize="4096"
|
254
|
+
RandomizedBaseAddress="1"
|
255
|
+
DataExecutionPrevention="0"
|
256
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
257
|
+
/>
|
258
|
+
<Tool
|
259
|
+
Name="VCALinkTool"
|
260
|
+
/>
|
261
|
+
<Tool
|
262
|
+
Name="VCXDCMakeTool"
|
263
|
+
/>
|
264
|
+
<Tool
|
265
|
+
Name="VCBscMakeTool"
|
266
|
+
/>
|
267
|
+
<Tool
|
268
|
+
Name="VCFxCopTool"
|
269
|
+
/>
|
270
|
+
<Tool
|
271
|
+
Name="VCCodeSignTool"
|
272
|
+
/>
|
273
|
+
<Tool
|
274
|
+
Name="VCPostBuildEventTool"
|
275
|
+
/>
|
276
|
+
<DeploymentTool
|
277
|
+
ForceDirty="-1"
|
278
|
+
RemoteDirectory=""
|
279
|
+
RegisterOutput="0"
|
280
|
+
AdditionalFiles=""
|
281
|
+
/>
|
282
|
+
<DebuggerTool
|
283
|
+
/>
|
284
|
+
</Configuration>
|
285
|
+
<Configuration
|
286
|
+
Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
287
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
288
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
289
|
+
ConfigurationType="2"
|
290
|
+
CharacterSet="1"
|
291
|
+
>
|
292
|
+
<Tool
|
293
|
+
Name="VCPreBuildEventTool"
|
294
|
+
/>
|
295
|
+
<Tool
|
296
|
+
Name="VCCustomBuildTool"
|
297
|
+
/>
|
298
|
+
<Tool
|
299
|
+
Name="VCXMLDataGeneratorTool"
|
300
|
+
/>
|
301
|
+
<Tool
|
302
|
+
Name="VCWebServiceProxyGeneratorTool"
|
303
|
+
/>
|
304
|
+
<Tool
|
305
|
+
Name="VCMIDLTool"
|
306
|
+
/>
|
307
|
+
<Tool
|
308
|
+
Name="VCCLCompilerTool"
|
309
|
+
ExecutionBucket="7"
|
310
|
+
Optimization="2"
|
311
|
+
FavorSizeOrSpeed="2"
|
312
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
313
|
+
RuntimeLibrary="0"
|
314
|
+
UsePrecompiledHeader="2"
|
315
|
+
WarningLevel="3"
|
316
|
+
DebugInformationFormat="3"
|
317
|
+
/>
|
318
|
+
<Tool
|
319
|
+
Name="VCManagedResourceCompilerTool"
|
320
|
+
/>
|
321
|
+
<Tool
|
322
|
+
Name="VCResourceCompilerTool"
|
323
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
324
|
+
Culture="1033"
|
325
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
326
|
+
/>
|
327
|
+
<Tool
|
328
|
+
Name="VCPreLinkEventTool"
|
329
|
+
/>
|
330
|
+
<Tool
|
331
|
+
Name="VCLinkerTool"
|
332
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
333
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
334
|
+
LinkIncremental="1"
|
335
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
336
|
+
GenerateDebugInformation="true"
|
337
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
338
|
+
SubSystem="0"
|
339
|
+
StackReserveSize="65536"
|
340
|
+
StackCommitSize="4096"
|
341
|
+
OptimizeReferences="2"
|
342
|
+
EnableCOMDATFolding="2"
|
343
|
+
RandomizedBaseAddress="1"
|
344
|
+
DataExecutionPrevention="0"
|
345
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
346
|
+
/>
|
347
|
+
<Tool
|
348
|
+
Name="VCALinkTool"
|
349
|
+
/>
|
350
|
+
<Tool
|
351
|
+
Name="VCXDCMakeTool"
|
352
|
+
/>
|
353
|
+
<Tool
|
354
|
+
Name="VCBscMakeTool"
|
355
|
+
/>
|
356
|
+
<Tool
|
357
|
+
Name="VCFxCopTool"
|
358
|
+
/>
|
359
|
+
<Tool
|
360
|
+
Name="VCCodeSignTool"
|
361
|
+
/>
|
362
|
+
<Tool
|
363
|
+
Name="VCPostBuildEventTool"
|
364
|
+
/>
|
365
|
+
<DeploymentTool
|
366
|
+
ForceDirty="-1"
|
367
|
+
RemoteDirectory=""
|
368
|
+
RegisterOutput="0"
|
369
|
+
AdditionalFiles=""
|
370
|
+
/>
|
371
|
+
<DebuggerTool
|
372
|
+
/>
|
373
|
+
</Configuration>
|
374
|
+
<Configuration
|
375
|
+
Name="Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
376
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
377
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
378
|
+
ConfigurationType="2"
|
379
|
+
CharacterSet="1"
|
380
|
+
>
|
381
|
+
<Tool
|
382
|
+
Name="VCPreBuildEventTool"
|
383
|
+
/>
|
384
|
+
<Tool
|
385
|
+
Name="VCCustomBuildTool"
|
386
|
+
/>
|
387
|
+
<Tool
|
388
|
+
Name="VCXMLDataGeneratorTool"
|
389
|
+
/>
|
390
|
+
<Tool
|
391
|
+
Name="VCWebServiceProxyGeneratorTool"
|
392
|
+
/>
|
393
|
+
<Tool
|
394
|
+
Name="VCMIDLTool"
|
395
|
+
/>
|
396
|
+
<Tool
|
397
|
+
Name="VCCLCompilerTool"
|
398
|
+
ExecutionBucket="7"
|
399
|
+
Optimization="2"
|
400
|
+
FavorSizeOrSpeed="2"
|
401
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
402
|
+
RuntimeLibrary="0"
|
403
|
+
UsePrecompiledHeader="2"
|
404
|
+
WarningLevel="3"
|
405
|
+
DebugInformationFormat="3"
|
406
|
+
/>
|
407
|
+
<Tool
|
408
|
+
Name="VCManagedResourceCompilerTool"
|
409
|
+
/>
|
410
|
+
<Tool
|
411
|
+
Name="VCResourceCompilerTool"
|
412
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
413
|
+
Culture="1033"
|
414
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
415
|
+
/>
|
416
|
+
<Tool
|
417
|
+
Name="VCPreLinkEventTool"
|
418
|
+
/>
|
419
|
+
<Tool
|
420
|
+
Name="VCLinkerTool"
|
421
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
422
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
423
|
+
LinkIncremental="1"
|
424
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
425
|
+
GenerateDebugInformation="true"
|
426
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
427
|
+
SubSystem="0"
|
428
|
+
StackReserveSize="65536"
|
429
|
+
StackCommitSize="4096"
|
430
|
+
OptimizeReferences="2"
|
431
|
+
EnableCOMDATFolding="2"
|
432
|
+
RandomizedBaseAddress="1"
|
433
|
+
DataExecutionPrevention="0"
|
434
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
435
|
+
/>
|
436
|
+
<Tool
|
437
|
+
Name="VCALinkTool"
|
438
|
+
/>
|
439
|
+
<Tool
|
440
|
+
Name="VCXDCMakeTool"
|
441
|
+
/>
|
442
|
+
<Tool
|
443
|
+
Name="VCBscMakeTool"
|
444
|
+
/>
|
445
|
+
<Tool
|
446
|
+
Name="VCFxCopTool"
|
447
|
+
/>
|
448
|
+
<Tool
|
449
|
+
Name="VCCodeSignTool"
|
450
|
+
/>
|
451
|
+
<Tool
|
452
|
+
Name="VCPostBuildEventTool"
|
453
|
+
/>
|
454
|
+
<DeploymentTool
|
455
|
+
ForceDirty="-1"
|
456
|
+
RemoteDirectory=""
|
457
|
+
RegisterOutput="0"
|
458
|
+
AdditionalFiles=""
|
459
|
+
/>
|
460
|
+
<DebuggerTool
|
461
|
+
/>
|
462
|
+
</Configuration>
|
463
|
+
<Configuration
|
464
|
+
Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
|
465
|
+
OutputDirectory="$(PlatformName)\$(ConfigurationName)"
|
466
|
+
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
|
467
|
+
ConfigurationType="2"
|
468
|
+
CharacterSet="1"
|
469
|
+
>
|
470
|
+
<Tool
|
471
|
+
Name="VCPreBuildEventTool"
|
472
|
+
/>
|
473
|
+
<Tool
|
474
|
+
Name="VCCustomBuildTool"
|
475
|
+
/>
|
476
|
+
<Tool
|
477
|
+
Name="VCXMLDataGeneratorTool"
|
478
|
+
/>
|
479
|
+
<Tool
|
480
|
+
Name="VCWebServiceProxyGeneratorTool"
|
481
|
+
/>
|
482
|
+
<Tool
|
483
|
+
Name="VCMIDLTool"
|
484
|
+
/>
|
485
|
+
<Tool
|
486
|
+
Name="VCCLCompilerTool"
|
487
|
+
ExecutionBucket="7"
|
488
|
+
Optimization="2"
|
489
|
+
FavorSizeOrSpeed="2"
|
490
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_WINDOWS;_USRDLL;RHOSETUP_EXPORTS;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
491
|
+
RuntimeLibrary="0"
|
492
|
+
UsePrecompiledHeader="2"
|
493
|
+
WarningLevel="3"
|
494
|
+
DebugInformationFormat="3"
|
495
|
+
/>
|
496
|
+
<Tool
|
497
|
+
Name="VCManagedResourceCompilerTool"
|
498
|
+
/>
|
499
|
+
<Tool
|
500
|
+
Name="VCResourceCompilerTool"
|
501
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
502
|
+
Culture="1033"
|
503
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
504
|
+
/>
|
505
|
+
<Tool
|
506
|
+
Name="VCPreLinkEventTool"
|
507
|
+
/>
|
508
|
+
<Tool
|
509
|
+
Name="VCLinkerTool"
|
510
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
511
|
+
OutputFile="$(OutDir)/rhosetup.dll"
|
512
|
+
LinkIncremental="1"
|
513
|
+
DelayLoadDLLs="$(NOINHERIT)"
|
514
|
+
GenerateDebugInformation="true"
|
515
|
+
ProgramDatabaseFile="$(OutDir)/rhosetup.pdb"
|
516
|
+
SubSystem="0"
|
517
|
+
StackReserveSize="65536"
|
518
|
+
StackCommitSize="4096"
|
519
|
+
OptimizeReferences="2"
|
520
|
+
EnableCOMDATFolding="2"
|
521
|
+
RandomizedBaseAddress="1"
|
522
|
+
DataExecutionPrevention="0"
|
523
|
+
ImportLibrary="$(OutDir)/rhosetup.lib"
|
524
|
+
/>
|
525
|
+
<Tool
|
526
|
+
Name="VCALinkTool"
|
527
|
+
/>
|
528
|
+
<Tool
|
529
|
+
Name="VCXDCMakeTool"
|
530
|
+
/>
|
531
|
+
<Tool
|
532
|
+
Name="VCBscMakeTool"
|
533
|
+
/>
|
534
|
+
<Tool
|
535
|
+
Name="VCFxCopTool"
|
536
|
+
/>
|
537
|
+
<Tool
|
538
|
+
Name="VCCodeSignTool"
|
539
|
+
/>
|
540
|
+
<Tool
|
541
|
+
Name="VCPostBuildEventTool"
|
542
|
+
/>
|
543
|
+
<DeploymentTool
|
544
|
+
ForceDirty="-1"
|
545
|
+
RemoteDirectory=""
|
546
|
+
RegisterOutput="0"
|
547
|
+
AdditionalFiles=""
|
548
|
+
/>
|
549
|
+
<DebuggerTool
|
550
|
+
/>
|
551
|
+
</Configuration>
|
552
|
+
</Configurations>
|
553
|
+
<References>
|
554
|
+
</References>
|
555
|
+
<Files>
|
556
|
+
<Filter
|
557
|
+
Name="Source Files"
|
558
|
+
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
559
|
+
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
560
|
+
>
|
561
|
+
<File
|
562
|
+
RelativePath=".\rhosetup.cpp"
|
563
|
+
>
|
564
|
+
</File>
|
565
|
+
<File
|
566
|
+
RelativePath=".\stdafx.cpp"
|
567
|
+
>
|
568
|
+
<FileConfiguration
|
569
|
+
Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
570
|
+
>
|
571
|
+
<Tool
|
572
|
+
Name="VCCLCompilerTool"
|
573
|
+
UsePrecompiledHeader="1"
|
574
|
+
/>
|
575
|
+
</FileConfiguration>
|
576
|
+
<FileConfiguration
|
577
|
+
Name="Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
578
|
+
>
|
579
|
+
<Tool
|
580
|
+
Name="VCCLCompilerTool"
|
581
|
+
UsePrecompiledHeader="1"
|
582
|
+
/>
|
583
|
+
</FileConfiguration>
|
584
|
+
<FileConfiguration
|
585
|
+
Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
586
|
+
>
|
587
|
+
<Tool
|
588
|
+
Name="VCCLCompilerTool"
|
589
|
+
UsePrecompiledHeader="1"
|
590
|
+
/>
|
591
|
+
</FileConfiguration>
|
592
|
+
<FileConfiguration
|
593
|
+
Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
594
|
+
>
|
595
|
+
<Tool
|
596
|
+
Name="VCCLCompilerTool"
|
597
|
+
UsePrecompiledHeader="1"
|
598
|
+
/>
|
599
|
+
</FileConfiguration>
|
600
|
+
<FileConfiguration
|
601
|
+
Name="Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
602
|
+
>
|
603
|
+
<Tool
|
604
|
+
Name="VCCLCompilerTool"
|
605
|
+
UsePrecompiledHeader="1"
|
606
|
+
/>
|
607
|
+
</FileConfiguration>
|
608
|
+
<FileConfiguration
|
609
|
+
Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
|
610
|
+
>
|
611
|
+
<Tool
|
612
|
+
Name="VCCLCompilerTool"
|
613
|
+
UsePrecompiledHeader="1"
|
614
|
+
/>
|
615
|
+
</FileConfiguration>
|
616
|
+
</File>
|
617
|
+
</Filter>
|
618
|
+
<Filter
|
619
|
+
Name="Header Files"
|
620
|
+
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
621
|
+
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
622
|
+
>
|
623
|
+
<File
|
624
|
+
RelativePath=".\stdafx.h"
|
625
|
+
>
|
626
|
+
</File>
|
627
|
+
</Filter>
|
628
|
+
<Filter
|
629
|
+
Name="Resource Files"
|
630
|
+
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
631
|
+
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
632
|
+
>
|
633
|
+
</Filter>
|
634
|
+
<File
|
635
|
+
RelativePath=".\ReadMe.txt"
|
636
|
+
>
|
637
|
+
</File>
|
638
|
+
</Files>
|
639
|
+
<Globals>
|
640
|
+
</Globals>
|
641
|
+
</VisualStudioProject>
|