├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── samples ├── DemoApp │ ├── __build │ │ ├── AndroidStudio │ │ │ └── DemoAppUI │ │ │ │ ├── .gitignore │ │ │ │ ├── DemoAppUI.iml │ │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── microsoft │ │ │ │ │ │ └── pmod │ │ │ │ │ │ └── demoappui │ │ │ │ │ │ └── ApplicationTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── microsoft │ │ │ │ │ │ │ └── pmod │ │ │ │ │ │ │ └── demoappui │ │ │ │ │ │ │ ├── DemoAppFactory.java │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── row_selector.xml │ │ │ │ │ │ └── selector.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ └── item_layout.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_main.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── values-w820dp │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── pmod │ │ │ │ │ └── demoappui │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── Xcode │ │ │ ├── DemoApp.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── DemoApp │ │ │ │ └── DemoApp.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── iOS │ │ │ │ └── DemoAppUI │ │ │ │ │ ├── DemoAppUI.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── DemoAppUI │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ └── macosx │ │ │ │ └── DemoAppUI │ │ │ │ ├── DemoAppUI.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── DemoAppUI │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ ├── android_ndk │ │ │ ├── impl │ │ │ │ ├── build.cmd │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ └── pmod │ │ │ │ │ └── Android.mk │ │ │ └── lib │ │ │ │ ├── build.cmd │ │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── pmod │ │ │ │ └── Android.mk │ │ │ │ └── pmod_lib │ │ │ │ └── Android.mk │ │ └── vs.build │ │ │ ├── DemoApp.sln │ │ │ ├── SchemaStub │ │ │ └── SchemaStub.csproj │ │ │ ├── classic │ │ │ ├── DemoApp.Net │ │ │ │ ├── DemoApp.Net.csproj │ │ │ │ └── DemoAppFactory.cs │ │ │ ├── DemoApp.dll │ │ │ │ ├── DemoApp.dll.vcxproj │ │ │ │ └── DemoApp.dll.vcxproj.filters │ │ │ ├── DemoAppImpl.dll │ │ │ │ ├── DemoAppImpl.dll.vcxproj │ │ │ │ └── DemoAppImpl.dll.vcxproj.filters │ │ │ ├── DemoAppUI │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── DemoAppUI.csproj │ │ │ │ ├── MainWindow.xaml │ │ │ │ └── MainWindow.xaml.cs │ │ │ └── classic.cpp.props │ │ │ └── uwp │ │ │ ├── DemoApp.dll │ │ │ ├── DemoApp.def │ │ │ ├── DemoApp.dll.vcxproj │ │ │ ├── DemoApp.dll.vcxproj.filters │ │ │ ├── DemoApp.idl │ │ │ ├── DemoApp_p.h │ │ │ └── dllmain.cpp │ │ │ ├── DemoAppUI │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── DemoAppUI.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── Service References │ │ │ │ └── Application Insights │ │ │ │ └── ConnectedService.json │ │ │ ├── DemoAppUIcpp │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cpp │ │ │ ├── App.xaml.h │ │ │ ├── Assets │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── DemoAppUIcpp.vcxproj │ │ │ ├── DemoAppUIcpp.vcxproj.filters │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cpp │ │ │ ├── MainPage.xaml.h │ │ │ ├── Package.appxmanifest │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ │ └── uwp.cpp.props │ └── src │ │ ├── cpp │ │ ├── AppClass.cpp │ │ ├── AppClass.h │ │ ├── AppClassFactory.cpp │ │ ├── ItemClass.cpp │ │ ├── ItemClass.h │ │ └── jni │ │ │ └── jniDemoApp.cpp │ │ ├── cpp_impl │ │ ├── DemoApp.cpp │ │ └── jni │ │ │ └── jniDemoApp.cpp │ │ ├── electron │ │ ├── main.js │ │ ├── package.json │ │ ├── styles │ │ │ └── window.css │ │ ├── window.html │ │ └── window.js │ │ ├── objectivec │ │ ├── PMODDemoAppFactory.h │ │ └── PMODDemoAppFactory.mm │ │ └── schema │ │ ├── DemoApp.cs │ │ └── DemoApp.schema ├── Movies │ ├── __build │ │ ├── AndroidStudio │ │ │ └── MoviesUI │ │ │ │ ├── .gitignore │ │ │ │ ├── MoviesUI.iml │ │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── libs │ │ │ │ │ └── universal-image-loader-1.9.5.jar │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── microsoft │ │ │ │ │ │ └── pmod │ │ │ │ │ │ └── moviesui │ │ │ │ │ │ └── ApplicationTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── microsoft │ │ │ │ │ │ │ └── pmod │ │ │ │ │ │ │ └── moviesui │ │ │ │ │ │ │ ├── MovieDetailActivity.java │ │ │ │ │ │ │ ├── MovieDetailFragment.java │ │ │ │ │ │ │ ├── MovieHelper.java │ │ │ │ │ │ │ ├── MovieListActivity.java │ │ │ │ │ │ │ ├── MovieListFragment.java │ │ │ │ │ │ │ ├── MoviesUIApp.java │ │ │ │ │ │ │ └── dummy │ │ │ │ │ │ │ └── DummyContent.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── layout-sw600dp │ │ │ │ │ │ └── activity_movie_list.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_movie_app_bar.xml │ │ │ │ │ │ ├── activity_movie_detail.xml │ │ │ │ │ │ ├── activity_movie_list.xml │ │ │ │ │ │ ├── fragment_movie_detail.xml │ │ │ │ │ │ └── movie_list_item.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── pmod │ │ │ │ │ └── moviesui │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ ├── Xcode │ │ │ ├── Movies.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── iOS │ │ │ │ └── MoviesUI │ │ │ │ ├── MoviesUI.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── MoviesUI │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ ├── android_ndk │ │ │ ├── build.cmd │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── pmod │ │ │ │ │ └── Android.mk │ │ │ └── log.txt │ │ └── vs │ │ │ ├── Android │ │ │ ├── MoviesUI │ │ │ │ ├── MoviesUI.androidproj │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── build.gradle.template │ │ │ │ │ ├── build │ │ │ │ │ │ ├── intermediates │ │ │ │ │ │ │ ├── incremental │ │ │ │ │ │ │ │ ├── compileArm7DebugAidl │ │ │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ │ │ │ ├── mergeArm7DebugAssets │ │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ │ │ ├── mergeArm7DebugJniLibFolders │ │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ │ │ └── mergeArm7DebugResources │ │ │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── resources-arm7-debug.ap_ │ │ │ │ │ │ └── outputs │ │ │ │ │ │ │ ├── apk │ │ │ │ │ │ │ ├── app-arm7-debug-unaligned.apk │ │ │ │ │ │ │ └── app-arm7-debug.apk │ │ │ │ │ │ │ └── logs │ │ │ │ │ │ │ └── manifest-merger-arm7-debug-report.txt │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── AndroidManifest.xml.template │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── MoviesUI │ │ │ │ │ │ │ └── MoviesUI.java │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ └── movies │ │ │ │ ├── movies.vcxproj │ │ │ │ ├── movies.vcxproj.filters │ │ │ │ ├── packages.config │ │ │ │ └── pch.h │ │ │ ├── Movies.sln │ │ │ ├── SchemaStub │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SchemaStub.csproj │ │ │ └── packages.config │ │ │ ├── nuget.config │ │ │ └── uwp │ │ │ ├── Movies.dll │ │ │ ├── Movies.def │ │ │ ├── Movies.dll.vcxproj │ │ │ ├── Movies.dll.vcxproj.filters │ │ │ ├── Movies.idl │ │ │ ├── dllmain.cpp │ │ │ └── packages.config │ │ │ └── MoviesUI │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── ApplicationInsights.config │ │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── Common │ │ │ └── NavigationService.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── MovieControl.xaml │ │ │ ├── MovieControl.xaml.cs │ │ │ ├── MovieDetailsPage.xaml │ │ │ ├── MovieDetailsPage.xaml.cs │ │ │ ├── MoviesUI.csproj │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── project.json │ └── src │ │ ├── cpp │ │ ├── Movies.cpp │ │ ├── MoviesApiService.cpp │ │ ├── jni │ │ │ ├── jniCppRestSdk.cpp │ │ │ └── jniMovies.cpp │ │ └── pch.h │ │ ├── objectivec │ │ ├── PMODMoviesFactory.h │ │ └── PMODMoviesFactory.m │ │ └── schema │ │ ├── Movies.schema │ │ ├── MoviesApiService.cs │ │ └── MoviesApp.cs ├── __build │ └── vs │ │ ├── cpp.configs.props │ │ └── uwp.cpp.configs.props └── shared │ └── objectivec │ └── PMODController │ ├── PMODCollectionController.h │ ├── PMODCollectionController.mm │ ├── PMODCommandController.h │ ├── PMODCommandController.mm │ ├── PMODKeyPathController.h │ └── PMODKeyPathController.mm ├── src ├── __build │ ├── IntelliJ │ │ └── pmod │ │ │ └── pmod.iml │ ├── Xcode │ │ ├── build.sh │ │ ├── build_codegen.sh │ │ ├── codegen.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── codegen │ │ │ ├── codegen_shared │ │ │ │ └── codegen_shared.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── pmodcodegen │ │ │ │ └── pmodcodegen.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── pmodcodegentask │ │ │ │ └── pmodcodegentask.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ └── pmodschemaparser │ │ │ │ └── pmodschemaparser.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── pmod.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── pmod │ │ │ └── pmod.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── pmod_lib │ │ │ └── pmod_lib.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── pmod_nodejs │ │ │ ├── nodejs.xcconfig │ │ │ └── pmod_nodejs.xcodeproj │ │ │ └── project.pbxproj │ ├── android_ndk │ │ ├── pmod │ │ │ ├── build.cmd │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ └── pmod_lib │ │ │ ├── build.cmd │ │ │ ├── jannson │ │ │ └── jni │ │ │ │ └── Android.mk │ │ │ └── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ ├── ant │ │ └── build.xml │ ├── make_files │ │ ├── common_sources.inc │ │ ├── foundation_library_sources.inc │ │ ├── foundation_sources.inc │ │ ├── jansson_sources.inc │ │ ├── jni_sources.inc │ │ ├── model_library_sources.inc │ │ ├── model_sources.inc │ │ ├── pal_sources.inc │ │ ├── pinvoke_sources.inc │ │ └── unix_sources.inc │ └── vs │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── NuGet │ │ ├── CodeGenPackage │ │ │ ├── CodeGenPackage.nuproj │ │ │ ├── CodeGenPackage.txt │ │ │ └── PMODCodeGenPackage.targets │ │ ├── Microsoft.PropertyModel.Library.uwp │ │ │ ├── Microsoft.PropertyModel.Library.uwp.nuproj │ │ │ └── Microsoft.PropertyModel.Library.uwp.txt │ │ ├── Microsoft.PropertyModel.Net │ │ │ ├── Microsoft.PropertyModel.Net.nuproj │ │ │ ├── Microsoft.PropertyModel.Net.targets │ │ │ └── Microsoft.PropertyModel.Net.txt │ │ ├── Microsoft.PropertyModel.uwp │ │ │ ├── Microsoft.PropertyModel.uwp.nuproj │ │ │ └── Microsoft.PropertyModel.uwp.txt │ │ ├── autopkg.ps1 │ │ ├── build.nuget.cmd │ │ ├── coapp.proj │ │ ├── packages.config │ │ ├── pmod.nuget.sln │ │ ├── pmod.nuget.targets │ │ ├── pmod.uwp │ │ │ ├── pmod.uwp.nuproj │ │ │ └── pmod.uwp.txt │ │ ├── pmod_lib.net │ │ │ ├── pmod_lib.net.nuproj │ │ │ ├── pmod_lib.net.targets │ │ │ └── pmod_lib.net.txt │ │ ├── pmod_lib.uwp │ │ │ ├── pmod_lib.uwp.nuproj │ │ │ └── pmod_lib.uwp.txt │ │ ├── pmod_libsdk.autopkg │ │ ├── pmodsdk.autopkg │ │ └── restore.cmd │ │ ├── __codegen │ │ ├── ProxySchemaStub │ │ │ └── ProxySchemaStub.csproj │ │ └── pmod.proj │ │ ├── android │ │ ├── android.cpp.configs.props │ │ ├── android.cpp.props │ │ ├── pmod │ │ │ ├── pch.h │ │ │ ├── pmod.vcxproj │ │ │ └── pmod.vcxproj.filters │ │ └── pmod_lib │ │ │ ├── pch.h │ │ │ ├── pmod_lib.vcxproj │ │ │ └── pmod_lib.vcxproj.filters │ │ ├── build.pmod.cmd │ │ ├── classic │ │ ├── classic.cpp.props │ │ ├── foundation.dll │ │ │ ├── foundation.dll.vcxproj │ │ │ └── foundation.dll.vcxproj.filters │ │ ├── foundation_lib.dll │ │ │ ├── foundation_lib.dll.vcxproj │ │ │ └── foundation_lib.dll.vcxproj.filters │ │ ├── foundation_lib_static.lib │ │ │ ├── foundation_lib_static.lib.vcxproj │ │ │ └── foundation_lib_static.lib.vcxproj.filters │ │ ├── foundation_static.lib │ │ │ ├── foundation_static.lib.vcxproj │ │ │ └── foundation_static.lib.vcxproj.filters │ │ ├── jansson │ │ │ ├── jansson.vcxproj │ │ │ └── jansson.vcxproj.filters │ │ ├── pmod.dll │ │ │ ├── pmod.dll.vcxproj │ │ │ └── pmod.dll.vcxproj.filters │ │ ├── pmod_jni.dll │ │ │ ├── jdk.props │ │ │ ├── pmod_jni.dll.vcxproj │ │ │ └── pmod_jni.dll.vcxproj.filters │ │ ├── pmod_lib.dll │ │ │ ├── pmod_lib.dll.vcxproj │ │ │ └── pmod_lib.dll.vcxproj.filters │ │ ├── pmod_lib_static.lib │ │ │ ├── pmod_lib_static.lib.vcxproj │ │ │ └── pmod_lib_static.lib.vcxproj.filters │ │ ├── pmod_pinvoke.dll │ │ │ ├── pmod_pinvoke.dll.vcxproj │ │ │ └── pmod_pinvoke.dll.vcxproj.filters │ │ ├── pmod_proxy.dll │ │ │ ├── pmod_proxy.dll.vcxproj │ │ │ └── pmod_proxy.dll.vcxproj.filters │ │ └── pmod_static.lib │ │ │ ├── pmod_static.lib.vcxproj │ │ │ └── pmod_static.lib.vcxproj.filters │ │ ├── codegen │ │ ├── codegen.cpp.props │ │ ├── pmodcodegen │ │ │ ├── commands.txt │ │ │ ├── pmodcodegen.vcxproj │ │ │ └── pmodcodegen.vcxproj.filters │ │ ├── pmodcodegentask │ │ │ ├── pmodcodegentask.vcxproj │ │ │ └── pmodcodegentask.vcxproj.filters │ │ └── pmodschemaparser │ │ │ ├── pmodschemaparser.vcxproj │ │ │ └── pmodschemaparser.vcxproj.filters │ │ ├── cpp.configs.props │ │ ├── cpp.props │ │ ├── csharp │ │ ├── Microsoft.PropertyModel.Codegen │ │ │ └── Microsoft.PropertyModel.Codegen.csproj │ │ └── Microsoft.PropertyModel.Net │ │ │ └── Microsoft.PropertyModel.Net.csproj │ │ ├── nodejs │ │ ├── nodejs.cpp.props │ │ ├── pmod_nodejs.node │ │ │ ├── nodejs.props │ │ │ ├── pmod_nodejs.node.vcxproj │ │ │ └── pmod_nodejs.node.vcxproj.filters │ │ └── pmod_nodejs_4e.node │ │ │ ├── nodejs.props │ │ │ ├── pmod_nodejs_4e.node.vcxproj │ │ │ ├── pmod_nodejs_4e.node.vcxproj.filters │ │ │ └── win_delay_load_hook.cc │ │ ├── pmod.android.sln │ │ ├── pmod.sln │ │ ├── pmod_node.sln │ │ ├── proj │ │ ├── cpp-gpengine.vcxitems │ │ ├── foundation_files.vcxitems │ │ ├── foundation_library_files.vcxitems │ │ ├── foundation_pal_files.vcxitems │ │ ├── foundation_pal_files_android.vcxitems │ │ ├── foundation_pal_files_windows.vcxitems │ │ ├── gpengine.vcxitems │ │ ├── jansson_files.vcxitems │ │ ├── jni_files.vcxitems │ │ ├── model_files.vcxitems │ │ ├── model_library_files.vcxitems │ │ ├── pinvoke_files.vcxitems │ │ ├── pinvoke_files.vcxitems.filters │ │ ├── pmod_node.vcxitems │ │ ├── pmod_proxy_files.vcxitems │ │ ├── pmod_proxy_files.vcxitems.filters │ │ ├── pmod_winrt_pal_files.vcxitems │ │ ├── pmod_winrt_projection_files.vcxitems │ │ ├── pmod_winrt_projection_lib_files.vcxitems │ │ ├── pmodcodegen_files.vcxitems │ │ ├── pmodschemaparser_files.vcxitems │ │ ├── src_files.vcxitems │ │ └── src_files.vcxitems.filters │ │ ├── uwp │ │ ├── pmod.dll │ │ │ ├── pmod.dll.vcxproj │ │ │ └── pmod.dll.vcxproj.filters │ │ ├── pmod_lib.dll │ │ │ ├── pmod_lib.dll.vcxproj │ │ │ └── pmod_lib.dll.vcxproj.filters │ │ ├── pmod_pinvoke.dll │ │ │ ├── pmod_invoke.dll.vcxproj │ │ │ └── pmod_invoke.dll.vcxproj.filters │ │ ├── pmod_projection.dll │ │ │ ├── pmod_projection.dll.vcxproj │ │ │ └── pmod_projection.dll.vcxproj.filters │ │ ├── pmod_projection_lib.dll │ │ │ ├── pmod_projection_lib.dll.vcxproj │ │ │ └── pmod_projection_lib.dll.vcxproj.filters │ │ ├── pmod_projection_proxy.dll │ │ │ ├── pmod_projection_proxy.dll.vcxproj │ │ │ └── pmod_projection_proxy.dll.vcxproj.filters │ │ ├── pmod_proxy.dll │ │ │ ├── pmod_proxy.dll.vcxproj │ │ │ └── pmod_proxy.dll.vcxproj.filters │ │ ├── uwp.cpp.configs.props │ │ └── uwp.cpp.props │ │ ├── version.json │ │ ├── version.proj │ │ ├── version.txt │ │ └── version │ │ ├── Microsoft.PropertyModel.Library.rc │ │ ├── Microsoft.PropertyModel.Proxy.rc │ │ ├── Microsoft.PropertyModel.rc │ │ ├── Version.cs │ │ ├── default │ │ └── version.h │ │ ├── pmod.rc │ │ ├── pmod_invoke.rc │ │ ├── pmod_lib.rc │ │ ├── pmod_proxy.rc │ │ ├── pmodcodegen.rc │ │ ├── pmodcodegentask.rc │ │ └── pmodschemaparser.rc ├── __generated │ ├── foundation │ │ └── FoundationErrorsTypeInfo.g.cpp │ ├── foundation_library │ │ ├── FoundationLoggerTypeInfo.g.cpp │ │ └── FoundationLoggerTypeInfoIIDs.g.cpp │ ├── model │ │ ├── ErrorsTypeInfo.g.cpp │ │ └── PerfTypeInfo.g.cpp │ ├── model_library │ │ ├── LoggerTypeInfo.g.cpp │ │ └── LoggerTypeInfoIIDs.g.cpp │ ├── objectivec │ │ └── PMODAdapterLoggerTypeInfo.cpp │ └── winrt │ │ ├── Errors.winrt.g.cpp │ │ ├── FoundationErrors.winrt.g.cpp │ │ └── Perf.winrt.g.cpp ├── android │ ├── mbstowcs.cpp │ ├── pal_trace_log.cpp │ └── wcstombs.cpp ├── codegen │ ├── gpengine │ │ ├── CGTParser.cpp │ │ ├── CGTParser.h │ │ ├── Parser.cpp │ │ ├── Parser.h │ │ ├── SymbolParser.cpp │ │ └── SymbolParser.h │ ├── inc │ │ ├── CodeGenUtil.h │ │ ├── ExePath.h │ │ ├── Md5Util.h │ │ ├── ModelSchema.h │ │ ├── SchemaSerializer.h │ │ ├── StringUtils.h │ │ └── ToolUtil.h │ ├── md5 │ │ ├── global.h │ │ ├── md5.c │ │ └── md5.h │ ├── parser │ │ ├── csharp │ │ │ ├── ModelSymbolParser.cpp │ │ │ ├── ModelSymbolParser.h │ │ │ ├── SchemaParser.cpp │ │ │ ├── SchemaParser.h │ │ │ ├── grammars │ │ │ │ └── CSharp_2.0_r7.cgt │ │ │ ├── managed │ │ │ │ └── BuildSchemaSupport.cs │ │ │ └── sample │ │ │ │ ├── model.schema │ │ │ │ ├── model1.model │ │ │ │ ├── model2.model │ │ │ │ ├── refModel.model │ │ │ │ └── refModel.schema │ │ ├── inc │ │ │ └── ParserEngineUtil.h │ │ └── src │ │ │ └── ParserEngineUtil.cpp │ ├── src │ │ ├── CodeGenUtil.cpp │ │ ├── ExePath.cpp │ │ ├── Md5Util.cpp │ │ ├── ModelSchema.cpp │ │ ├── SchemaSerializer.cpp │ │ ├── ToolUtil.cpp │ │ └── pmodcodegentask.cpp │ ├── tool │ │ ├── CodeGenToolBase.cpp │ │ ├── CodeGenToolBase.h │ │ ├── GenerateCSharpBase.cpp │ │ ├── GenerateCSharpBase.h │ │ ├── GenerateCSharpClasses.cpp │ │ ├── GenerateCSharpClasses.h │ │ ├── GenerateCSharpTypeInfo.cpp │ │ ├── GenerateCSharpTypeInfo.h │ │ ├── GenerateCppBase.cpp │ │ ├── GenerateCppBase.h │ │ ├── GenerateCppLibrary.cpp │ │ ├── GenerateCppLibrary.h │ │ ├── GenerateFastCppTemplate.cpp │ │ ├── GenerateFastCppTemplate.h │ │ ├── GenerateImplCppTemplate.cpp │ │ ├── GenerateImplCppTemplate.h │ │ ├── GenerateJava.cpp │ │ ├── GenerateJava.h │ │ ├── GenerateKoJavascript.cpp │ │ ├── GenerateKoJavascript.h │ │ ├── GenerateModelAdapter.cpp │ │ ├── GenerateModelAdapter.h │ │ ├── GenerateNetInterop.cpp │ │ ├── GenerateNetInterop.h │ │ ├── GenerateObjectiveC.cpp │ │ ├── GenerateObjectiveC.h │ │ ├── GenerateProxyJavascript.cpp │ │ ├── GenerateProxyJavascript.h │ │ ├── GeneratePtrClass.cpp │ │ ├── GeneratePtrClass.h │ │ ├── GenerateTypeInfo.cpp │ │ ├── GenerateTypeInfo.h │ │ ├── GenerateWindowsRuntimeAdapter.cpp │ │ ├── GenerateWindowsRuntimeAdapter.h │ │ ├── checkdependency.cpp │ │ ├── gccxml2chema.cpp │ │ ├── gencsharpschema.cpp │ │ └── propertymodelcodegen.cpp │ └── util │ │ ├── codegen.json │ │ ├── codegen.proj │ │ ├── codegen.sh │ │ └── codegen_clean.sh ├── coreclr │ ├── cpp │ │ ├── PInvokeUtils.cpp │ │ ├── PInvokeUtils.h │ │ ├── foundation │ │ │ ├── PInvokeActivationFactory.cpp │ │ │ ├── PInvokeAsyncOperation.cpp │ │ │ ├── PInvokeDictionary.cpp │ │ │ ├── PInvokeDispatcherAdapter.cpp │ │ │ ├── PInvokeEnumValue.cpp │ │ │ ├── PInvokeEnumerable.cpp │ │ │ ├── PInvokeInspectable.cpp │ │ │ ├── PInvokeLogger.cpp │ │ │ ├── PInvokeObject.cpp │ │ │ ├── PInvokeObjectDispatch.cpp │ │ │ ├── PInvokeObjectTypeInfo.cpp │ │ │ ├── PInvokePropertyTypeInfo.cpp │ │ │ └── PInvokePropertyValue.cpp │ │ ├── model │ │ │ ├── PInvokeCommand.cpp │ │ │ ├── PInvokeObjectStaticsUtil.cpp │ │ │ ├── PInvokeObservableCollection.cpp │ │ │ └── PInvokeObservableObject.cpp │ │ └── pinvoke_api.h │ └── managed │ │ ├── AsyncOperation.cs │ │ ├── AsyncOperationAdapter.cs │ │ ├── BaseNotifyPropertyChanged.cs │ │ ├── CanExecuteChangedEventArgsAdapter.cs │ │ ├── ClassFactory.cs │ │ ├── Command.cs │ │ ├── CommandAdapter.cs │ │ ├── CompletedEventArgsAdapter.cs │ │ ├── Dictionary.cs │ │ ├── DictionaryAdapter.cs │ │ ├── DispatcherAdapter.cs │ │ ├── EnumValueAdapter.cs │ │ ├── Enumerable.cs │ │ ├── EnumerableAdapter.cs │ │ ├── EventModelEventArgsAdapter.cs │ │ ├── FactoryObject.cs │ │ ├── InspectableAdapter.cs │ │ ├── LoggerAdapter.cs │ │ ├── NativeMethods.cs │ │ ├── NotifyCollectionChangedEventArgsAdapter.cs │ │ ├── Object.cs │ │ ├── ObjectAdapter.cs │ │ ├── ObjectDispatch.cs │ │ ├── ObjectDispatchAdapter.cs │ │ ├── ObjectStaticsUtilAdapter.cs │ │ ├── ObjectTypeInfoAdapter.cs │ │ ├── ObservableCollection.cs │ │ ├── ObservableCollectionAdapter.cs │ │ ├── ObservableObject.cs │ │ ├── ObservableObjectAdapter.cs │ │ ├── PInvokeCallbackAdapter.cs │ │ ├── PInvokeUtils.cs │ │ ├── PropertyChangedEventArgsAdapter.cs │ │ ├── PropertyType.cs │ │ ├── PropertyTypeInfoAdapter.cs │ │ └── PropertyValueAdapter.cs ├── foundation │ ├── ActivationFactory.cpp │ ├── ActivationFactory.h │ ├── AdapterFactoryFactory.cpp │ ├── AdapterFactoryFactory.h │ ├── AsyncOperationClassInfoCache.cpp │ ├── AsyncOperationClassInfoCache.h │ ├── AsyncOperationTypeInfo.cpp │ ├── AsyncOperationTypeInfo.h │ ├── DebugUtil.cpp │ ├── DebugUtil.h │ ├── DictionaryBase.h │ ├── DictionaryFactory.cpp │ ├── DictionaryFactory.h │ ├── EnumTypeClassInfoCache.cpp │ ├── EnumTypeClassInfoCache.h │ ├── EnumTypeInfo.cpp │ ├── EnumTypeInfo.h │ ├── EnumValue.cpp │ ├── EnumValue.h │ ├── EnumerableClassInfoCache.cpp │ ├── EnumerableClassInfoCache.h │ ├── EnumerableTypeInfo.cpp │ ├── EnumerableTypeInfo.h │ ├── FoundationAssert.cpp │ ├── FoundationBaseTracker.h │ ├── FoundationInterfaces.cpp │ ├── FoundationLibraryInstance.cpp │ ├── FoundationLibraryInstance.h │ ├── FoundationPrivateInterfaces.cpp │ ├── FoundationTracker.cpp │ ├── FoundationTracker.h │ ├── GenericAdapterFactory.cpp │ ├── GenericAdapterFactory.h │ ├── InterfaceAdapterFactoryBase.h │ ├── InterfaceAdapterFactoryHost.cpp │ ├── InterfaceAdapterFactoryHost.h │ ├── MethodInfo.cpp │ ├── MethodInfo.h │ ├── NamespaceStatics.cpp │ ├── NamespaceStatics.h │ ├── NodeStatics.cpp │ ├── NodeStatics.h │ ├── ObjectDispatchClassInfoCache.cpp │ ├── ObjectDispatchClassInfoCache.h │ ├── ObjectDispatchInfo.cpp │ ├── ObjectDispatchInfo.h │ ├── ObjectDispatchInfoBase.cpp │ ├── ObjectDispatchInfoBase.h │ ├── ObjectFactory.cpp │ ├── ObjectFactory.h │ ├── ObjectUniqueId.cpp │ ├── PropertyInfo.cpp │ ├── PropertyInfo.h │ ├── PropertyInfoProxy.cpp │ ├── PropertyInfoProxy.h │ ├── PropertyTypeInfo.cpp │ ├── PropertyTypeInfo.h │ ├── PropertyValueInternalStatics.cpp │ ├── PropertyValueInternalStatics.h │ ├── TypeAdapterFactory.cpp │ ├── TypeAdapterFactory.h │ ├── TypeInfo.cpp │ ├── TypeInfo.h │ ├── TypeInfoCache.h │ ├── TypeInfoFactory.cpp │ ├── TypeInfoFactory.h │ ├── TypeInfoStatics.cpp │ ├── TypeInfoStatics.h │ ├── pch.cpp │ ├── pch.h │ └── schema │ │ ├── FoundationErrors.cs │ │ ├── FoundationErrors.schema │ │ ├── FoundationLoggerTypes.cs │ │ └── FoundationLoggerTypes.schema ├── foundation_library │ ├── AsyncOperation.cpp │ ├── AsyncOperation.h │ ├── BinaryLogListener.cpp │ ├── BinaryLogListener.h │ ├── BinaryStreamProvider.cpp │ ├── BinaryStreamProvider.h │ ├── CreateFoundationHelper.h │ ├── EventHandler.h │ ├── EventSourceBase.h │ ├── Expression.cpp │ ├── Expression.h │ ├── ExpressionFactory.cpp │ ├── ExpressionFactory.h │ ├── FastContainerUtil.cpp │ ├── FastContainerUtil.h │ ├── FastPropertiesContainer.cpp │ ├── FastPropertiesContainer.h │ ├── FoundationBase.h │ ├── FoundationLibraryInterfaces.cpp │ ├── JsonStatics.cpp │ ├── JsonStatics.h │ ├── LogCategory.cpp │ ├── LogCategory.h │ ├── LogRecordStatics.cpp │ ├── LogRecordStatics.h │ ├── Logger.cpp │ ├── Logger.h │ ├── LoggerFactory.cpp │ ├── LoggerFactory.h │ ├── LoggerUtil.cpp │ ├── Mailbox.cpp │ ├── Mailbox.h │ ├── MailboxDispatcher.cpp │ ├── MailboxDispatcher.h │ ├── ObjectBase.cpp │ ├── ObjectBase.h │ ├── ObjectBaseFactory.cpp │ ├── ObjectBaseFactory.h │ ├── ObjectCreatedEventArgs.h │ ├── ObjectDispatch.cpp │ ├── ObjectDispatch.h │ ├── ObjectDispatchDictionaryAdapter.h │ ├── ObjectDispatchFactory.cpp │ ├── ObjectDispatchFactory.h │ ├── TextLogListener.cpp │ ├── TextLogListener.h │ ├── pch.cpp │ └── pch.h ├── foundation_pal │ ├── ComInterfaces.cpp │ ├── FoundationExports.cpp │ ├── PropertyValue.cpp │ ├── hstring.cpp │ └── hstring.h ├── inc │ ├── AdapterProxyInterface.h │ ├── ArrayHelper.h │ ├── CastHelper.h │ ├── CriticalSection.h │ ├── FoundationTypes.h │ ├── FoundationUtilHelper.h │ ├── FreeThreadedMarshalerBase.h │ ├── GuidHelper.h │ ├── PtrSingleton.h │ ├── SerializeUtil.h │ ├── auto_delete_vector.h │ ├── palTimer.h │ └── pal_str.h ├── jansson │ └── src │ │ ├── Makefile.am │ │ ├── dump.c │ │ ├── error.c │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hashtable_seed.c │ │ ├── jansson.def │ │ ├── jansson.h │ │ ├── jansson_config.h │ │ ├── jansson_config.h.in │ │ ├── jansson_private.h │ │ ├── load.c │ │ ├── lookup3.h │ │ ├── memory.c │ │ ├── pack_unpack.c │ │ ├── strbuffer.c │ │ ├── strbuffer.h │ │ ├── strconv.c │ │ ├── utf.c │ │ ├── utf.h │ │ └── value.c ├── java │ └── pmod │ │ ├── jni │ │ ├── AsyncOperationImpl.cpp │ │ ├── AsyncOperationImpl.h │ │ ├── CanExecuteChangedEventArgs.cpp │ │ ├── CanExecuteChangedEventArgs.h │ │ ├── CommandImpl.cpp │ │ ├── CommandImpl.h │ │ ├── CompletedEventArgs.cpp │ │ ├── CompletedEventArgs.h │ │ ├── Dictionary.cpp │ │ ├── Dispatcher.cpp │ │ ├── Dispatcher.h │ │ ├── EventModelEventArgs.cpp │ │ ├── EventModelEventArgs.h │ │ ├── FactoryObject.cpp │ │ ├── FactoryObject.h │ │ ├── FoundationObject.cpp │ │ ├── FoundationObjectImpl.cpp │ │ ├── FoundationObjectImpl.h │ │ ├── InspectableObject.cpp │ │ ├── InspectableObject.h │ │ ├── JCallbackBase.h │ │ ├── JClass.cpp │ │ ├── JClass.h │ │ ├── JObject.cpp │ │ ├── JObject.h │ │ ├── JString.cpp │ │ ├── JString.h │ │ ├── JVMEnv.cpp │ │ ├── JVMEnv.h │ │ ├── JniActivationFactory.cpp │ │ ├── JniConnection.h │ │ ├── JniCoreUtils.cpp │ │ ├── JniCoreUtils.h │ │ ├── JniLoadLibrary.cpp │ │ ├── JniUtility.cpp │ │ ├── JniUtility.h │ │ ├── JsonUtil.cpp │ │ ├── Logger.cpp │ │ ├── ModelFactory.cpp │ │ ├── NotifyCollectionChangedEventArgs.cpp │ │ ├── NotifyCollectionChangedEventArgs.h │ │ ├── ObjectFactoryImpl.cpp │ │ ├── ObjectFactoryImpl.h │ │ ├── ObjectTypeInfo.cpp │ │ ├── ObjectTypeInfo.h │ │ ├── ObservableCollectionImpl.cpp │ │ ├── ObservableCollectionImpl.h │ │ ├── ObservableListImpl.cpp │ │ ├── ObservableListImpl.h │ │ ├── ObservableObjectImpl.cpp │ │ ├── ObservableObjectImpl.h │ │ ├── ObservableObjectInfoImpl.cpp │ │ ├── ObservableObjectInfoImpl.h │ │ ├── PropertyChangedEventArgs.cpp │ │ ├── PropertyChangedEventArgs.h │ │ ├── PropertyInfoImpl.cpp │ │ ├── PropertyInfoImpl.h │ │ ├── PropertyTypeInfoImpl.cpp │ │ ├── PropertyTypeInfoImpl.h │ │ ├── PropertyValueImpl.cpp │ │ ├── PropertyValueImpl.h │ │ ├── android_lib │ │ │ └── JniLoadLibrary.cpp │ │ └── genjni.cmd │ │ └── src │ │ └── com │ │ └── microsoft │ │ └── pmod │ │ ├── ActivationFactory.java │ │ ├── AsyncOperation.java │ │ ├── AsyncOperationImpl.java │ │ ├── AsyncStatus.java │ │ ├── BaseAsyncOperation.java │ │ ├── BaseAsyncOperationImpl.java │ │ ├── BaseCommand.java │ │ ├── BaseCommandImpl.java │ │ ├── BaseObservableCollectionImpl.java │ │ ├── BaseObservableListImpl.java │ │ ├── CanExecuteChangedEvent.java │ │ ├── CanExecuteChangedEventArgs.java │ │ ├── CanExecuteChangedEventListener.java │ │ ├── ClassFactory.java │ │ ├── ComException.java │ │ ├── Command.java │ │ ├── CommandImpl.java │ │ ├── CommandParameter.java │ │ ├── CommandParameterImpl.java │ │ ├── CommandResult.java │ │ ├── CommandResultImpl.java │ │ ├── CommmandModelState.java │ │ ├── CompletedEvent.java │ │ ├── CompletedEventArgs.java │ │ ├── CompletedEventListener.java │ │ ├── Constants.java │ │ ├── Dictionary.java │ │ ├── Dispatcher.java │ │ ├── DispatcherCallback.java │ │ ├── EnumValue.java │ │ ├── EventArgs.java │ │ ├── EventModelEvent.java │ │ ├── EventModelEventArgs.java │ │ ├── EventModelEventListener.java │ │ ├── EventSink.java │ │ ├── ExecuteFoundationValues.java │ │ ├── FactoryObject.java │ │ ├── FoundationObject.java │ │ ├── FoundationObjectImpl.java │ │ ├── InspectableObject.java │ │ ├── InstanceFlags.java │ │ ├── JsonUtil.java │ │ ├── LogCategory.java │ │ ├── Logger.java │ │ ├── LoggerUtil.java │ │ ├── LoggingLevel.java │ │ ├── NotifyCollectionChangedEvent.java │ │ ├── NotifyCollectionChangedEventArgs.java │ │ ├── NotifyCollectionChangedListener.java │ │ ├── NotifyCollectionModelChangedAction.java │ │ ├── ObjectFactory.java │ │ ├── ObjectTypeInfo.java │ │ ├── ObservableCollection.java │ │ ├── ObservableCollectionFactoryTypes.java │ │ ├── ObservableCollectionImpl.java │ │ ├── ObservableList.java │ │ ├── ObservableListImpl.java │ │ ├── ObservableObject.java │ │ ├── ObservableObjectImpl.java │ │ ├── ObservableObjectInfo.java │ │ ├── PropertyChangedEventArgs.java │ │ ├── PropertyInfo.java │ │ ├── PropertyType.java │ │ ├── PropertyTypeInfo.java │ │ ├── PropertyValue.java │ │ ├── SimpleCommand.java │ │ └── SimpleCommandImpl.java ├── model │ ├── CommandClassInfoCache.cpp │ ├── CommandClassInfoCache.h │ ├── CommandInfo.cpp │ ├── CommandInfo.h │ ├── EventInfo.cpp │ ├── EventInfo.h │ ├── ModelInterfaces.cpp │ ├── ModelTypeInfoFactory.cpp │ ├── ModelTypeInfoFactory.h │ ├── ModelTypeInfoLibrary.cpp │ ├── ModelTypeInfoStatics.cpp │ ├── ModelTypeInfoStatics.h │ ├── ObservableCollectionClassInfoCache.cpp │ ├── ObservableCollectionClassInfoCache.h │ ├── ObservableCollectionInfo.cpp │ ├── ObservableCollectionInfo.h │ ├── ObservableObjectClassInfoCache.cpp │ ├── ObservableObjectClassInfoCache.h │ ├── ObservableObjectInfo.cpp │ ├── ObservableObjectInfo.h │ ├── ObservableObjectInfoBase.cpp │ ├── ObservableObjectInfoBase.h │ ├── PropertyIdContainer.h │ ├── pch.cpp │ ├── pch.h │ └── schema │ │ ├── Errors.cs │ │ ├── Errors.schema │ │ ├── LoggerTypes.cs │ │ ├── LoggerTypes.schema │ │ ├── Perf.cs │ │ └── Perf.schema ├── model_library │ ├── BaseModelSource.cpp │ ├── BaseModelSource.h │ ├── BatchPropertyChangedHelper.h │ ├── BindingBase.h │ ├── BindingValueChangedEventArgs.h │ ├── ClassStatics.cpp │ ├── ClassStatics.h │ ├── CollectionViewModel.cpp │ ├── CollectionViewModel.h │ ├── Command.cpp │ ├── Command.h │ ├── CommandViewModel.cpp │ ├── CommandViewModel.h │ ├── ExpressionBinding.cpp │ ├── ExpressionBinding.h │ ├── FactoryBindingConverters.cpp │ ├── FactoryBindingConverters.h │ ├── FastItemsContainer.cpp │ ├── FastItemsContainer.h │ ├── ItemsContainer.h │ ├── ModelLibraryInstance.cpp │ ├── ModelLibraryInterfaces.cpp │ ├── ModelPrivateInterfaces.cpp │ ├── ModelSerializerAdapters.cpp │ ├── MultiSourceBinding.cpp │ ├── MultiSourceBinding.h │ ├── MultiSourceCollectionViewModel.cpp │ ├── MultiSourceCollectionViewModel.h │ ├── MultiSourceModelBase.h │ ├── MultiSourceViewModel.cpp │ ├── MultiSourceViewModel.h │ ├── ObjectNode.h │ ├── ObjectStatics.cpp │ ├── ObjectStatics.h │ ├── ObjectViewModel.cpp │ ├── ObjectViewModel.h │ ├── ObjectViewModelBase.h │ ├── ObservableCollection.cpp │ ├── ObservableCollection.h │ ├── ObservableCollectionStatics.cpp │ ├── ObservableCollectionStatics.h │ ├── ObservableObject.cpp │ ├── ObservableObject.h │ ├── ObservableObjectAdapters.cpp │ ├── ObservableObjectStatics.cpp │ ├── ObservableObjectStatics.h │ ├── PropertyBinding.cpp │ ├── PropertyBinding.h │ ├── ViewModelBase.h │ ├── ViewModelFactory.cpp │ ├── ViewModelFactory.h │ └── debug │ │ └── DebugUtilCommand.cpp ├── nodejs │ ├── Addon.cpp │ ├── AsyncOperationWrap.cpp │ ├── AsyncOperationWrap.h │ ├── CommandWrap.cpp │ ├── CommandWrap.h │ ├── DictionaryWrap.cpp │ ├── DictionaryWrap.h │ ├── DispatcherWrap.cpp │ ├── DispatcherWrap.h │ ├── InspectableBaseWrap.cpp │ ├── InspectableBaseWrap.h │ ├── NodeJsHelper.cpp │ ├── NodeJsHelper.h │ ├── ObjectDispatchWrap.cpp │ ├── ObjectDispatchWrap.h │ ├── ObjectWrap.cpp │ ├── ObjectWrap.h │ ├── ObservableCollectionWrap.cpp │ ├── ObservableCollectionWrap.h │ ├── ObservableObjectWrap.cpp │ ├── ObservableObjectWrap.h │ ├── Statics.cpp │ ├── Statics.h │ ├── pch.cpp │ └── pch.h ├── objectivec │ ├── PMODAdapter │ │ ├── PMODAdapter.mm │ │ ├── PMODAdapterFactory.mm │ │ ├── PMODAdapterLogCategory.cpp │ │ ├── PMODAdapterLogCategory.h │ │ ├── PMODAdapterUtil.h │ │ ├── PMODAdapterUtil.mm │ │ ├── PMODAsyncOperation.mm │ │ ├── PMODCollection.mm │ │ ├── PMODCommand.mm │ │ ├── PMODDictionary.mm │ │ ├── PMODDispatcherQueueAdapter.mm │ │ ├── PMODEnumValue.mm │ │ ├── PMODFoundation.mm │ │ ├── PMODGuid.mm │ │ ├── PMODInspectable.mm │ │ ├── PMODInterop.mm │ │ ├── PMODList.mm │ │ ├── PMODLogger.mm │ │ ├── PMODObjectBase.mm │ │ ├── PMODObjectDispatch.mm │ │ ├── PMODObjectNode.mm │ │ ├── PMODObservableObject.mm │ │ └── schema │ │ │ ├── PMODAdapterLoggerTypes.cs │ │ │ └── PMODAdapterLoggerTypes.schema │ ├── PMODLibAdapter │ │ └── PMODBindingBase.mm │ ├── foundation │ │ └── dispatch_queue_adapter.cpp │ └── pal │ │ └── DateTime.mm ├── pal │ ├── date_time.cpp │ ├── pal_common.cpp │ ├── pal_load_library.cpp │ ├── pal_trace_printf.cpp │ ├── pal_wchar16_t.cpp │ ├── pal_wchar_t_crt.cpp │ ├── pal_wchar_t_nocrt.cpp │ ├── pch.h │ ├── std_thread.cpp │ ├── unix │ │ ├── palApi.cpp │ │ ├── palApiInternal.cpp │ │ └── palTimer.cpp │ ├── win32 │ │ ├── DateTime.cpp │ │ └── TimerService.cpp │ └── winrt │ │ └── TimerService.cpp ├── proxy │ ├── AsyncOperationProxy.cpp │ ├── AsyncOperationProxy.h │ ├── BaseObjectProxy.cpp │ ├── BaseObjectProxy.h │ ├── CommandProxy.cpp │ ├── CommandProxy.h │ ├── ObjectFactoryProxy.h │ ├── ObservableCollectionProxy.cpp │ ├── ObservableCollectionProxy.h │ ├── ObservableObjectProxy.cpp │ ├── ObservableObjectProxy.h │ ├── ProxyObjectFactory.cpp │ ├── ProxyObjectFactory.h │ ├── ProxyObjectFactoryFactory.cpp │ ├── TBaseModelProxy.h │ ├── TBaseObjectProxy.h │ ├── ViewModelProxy.h │ ├── pch.cpp │ ├── pch.h │ ├── schema │ │ ├── ProxyTypes.cs │ │ └── ProxyTypes.schema │ └── winrt │ │ ├── Microsoft.PropertyModel.Proxy.def │ │ ├── Proxy.idl │ │ └── dllmain.cpp ├── public │ ├── csharp │ │ └── winrt │ │ │ ├── DebugUtil.cs │ │ │ ├── ObservableCollectionAdapter.cs │ │ │ └── PropertyModelLibraryUtil.cs │ ├── idl │ │ ├── FoundationErrors.g.idl │ │ ├── Microsoft.PropertyModel.idl │ │ ├── ModelErrors.g.idl │ │ └── ModelPerf.g.idl │ ├── inc │ │ ├── foundation │ │ │ ├── activation_factory.h │ │ │ ├── array_wrapper.h │ │ │ ├── assert.h │ │ │ ├── async_operation_connection.h │ │ │ ├── async_operation_ptr.h │ │ │ ├── boxing_util.h │ │ │ ├── com_interfaces.h │ │ │ ├── com_ptr.h │ │ │ ├── ctl │ │ │ │ ├── aggregate_weak_reference_source.h │ │ │ │ ├── com_library.h │ │ │ │ ├── com_weak_reference_source.h │ │ │ │ └── composable_weak_reference_source.h │ │ │ ├── delegate_library.h │ │ │ ├── delegate_weak_ref_library.h │ │ │ ├── dictionary_ptr.h │ │ │ ├── enum_flags.h │ │ │ ├── errors.h │ │ │ ├── event_util.h │ │ │ ├── exception.h │ │ │ ├── foundation_api.h │ │ │ ├── foundation_factory.h │ │ │ ├── foundation_macros.h │ │ │ ├── hstring_wrapper.h │ │ │ ├── interfaces.h │ │ │ ├── interfaces │ │ │ │ ├── async_operation.h │ │ │ │ ├── dictionary.h │ │ │ │ ├── enum_value.h │ │ │ │ ├── enumerable.h │ │ │ │ ├── expression.h │ │ │ │ ├── iterator.h │ │ │ │ ├── key_value_pair.h │ │ │ │ ├── logger.h │ │ │ │ ├── map.h │ │ │ │ ├── node.h │ │ │ │ ├── node_statics.h │ │ │ │ ├── object.h │ │ │ │ ├── object_dispatch.h │ │ │ │ ├── object_dispatch_info.h │ │ │ │ ├── object_factory.h │ │ │ │ ├── object_serializer.h │ │ │ │ ├── property_type_info.h │ │ │ │ ├── property_value.h │ │ │ │ ├── readonly_collection.h │ │ │ │ ├── service_provider.h │ │ │ │ ├── stream_provider.h │ │ │ │ └── type_info_statics.h │ │ │ ├── library │ │ │ │ ├── activation_factory.h │ │ │ │ ├── adapter_base.h │ │ │ │ ├── async_operation_class.h │ │ │ │ ├── async_operation_class_ptr.h │ │ │ │ ├── async_operation_class_wrapper.h │ │ │ │ ├── async_operation_impl.h │ │ │ │ ├── async_operation_type_info.h │ │ │ │ ├── base_adapter_host.h │ │ │ │ ├── base_object_impl.h │ │ │ │ ├── binary_stream_provider.h │ │ │ │ ├── boxing_value_adapters.h │ │ │ │ ├── callback_delegate_adapter_base.h │ │ │ │ ├── class_base.h │ │ │ │ ├── class_options.h │ │ │ │ ├── class_wrapper.h │ │ │ │ ├── class_wrapper_base.h │ │ │ │ ├── com_class_ptr.h │ │ │ │ ├── com_ptr_singleton.h │ │ │ │ ├── com_ptr_wrapper.h │ │ │ │ ├── critical_section.h │ │ │ │ ├── critical_section_impl.h │ │ │ │ ├── critical_section_lock.h │ │ │ │ ├── datetime_util.h │ │ │ │ ├── debug_library.h │ │ │ │ ├── dictionary_class.h │ │ │ │ ├── dictionary_class_ptr.h │ │ │ │ ├── dictionary_impl.h │ │ │ │ ├── dispatcher_callback_adapter.h │ │ │ │ ├── dispatcher_util.h │ │ │ │ ├── disposable_util.h │ │ │ │ ├── enum_type_info.h │ │ │ │ ├── enumerable_impl.h │ │ │ │ ├── enumerable_type_info.h │ │ │ │ ├── event_args_base.h │ │ │ │ ├── event_handler_container.h │ │ │ │ ├── event_handler_source.h │ │ │ │ ├── expression_class.h │ │ │ │ ├── fire_event_support.h │ │ │ │ ├── foundation_adapter_base.h │ │ │ │ ├── foundation_impl.h │ │ │ │ ├── foundation_lib_api.h │ │ │ │ ├── foundation_library.h │ │ │ │ ├── interface_adapter_host_base.h │ │ │ │ ├── interface_adapter_util.h │ │ │ │ ├── interfaces │ │ │ │ │ ├── adapter_factory.h │ │ │ │ │ ├── async_operation_class.h │ │ │ │ │ ├── async_operation_factory.h │ │ │ │ │ ├── component.h │ │ │ │ │ ├── critical_section.h │ │ │ │ │ ├── debug_util.h │ │ │ │ │ ├── delegate_base.h │ │ │ │ │ ├── dictionary_factory.h │ │ │ │ │ ├── dispatcher.h │ │ │ │ │ ├── disposable.h │ │ │ │ │ ├── event_source_class.h │ │ │ │ │ ├── expression_factory.h │ │ │ │ │ ├── fast_properties_container.h │ │ │ │ │ ├── fast_properties_container_parameters.h │ │ │ │ │ ├── fire_event.h │ │ │ │ │ ├── foundation_class_base.h │ │ │ │ │ ├── input_stream.h │ │ │ │ │ ├── interface_adapter.h │ │ │ │ │ ├── interface_adapter_host.h │ │ │ │ │ ├── json_statics.h │ │ │ │ │ ├── logger_class.h │ │ │ │ │ ├── logger_factory.h │ │ │ │ │ ├── logger_factory_util.h │ │ │ │ │ ├── mailbox.h │ │ │ │ │ ├── method_info_class.h │ │ │ │ │ ├── namespace_statics.h │ │ │ │ │ ├── node_impl.h │ │ │ │ │ ├── object_base_factory.h │ │ │ │ │ ├── object_class.h │ │ │ │ │ ├── object_dispatch_factory.h │ │ │ │ │ ├── object_dispatch_parameters.h │ │ │ │ │ ├── output_stream.h │ │ │ │ │ ├── pair.h │ │ │ │ │ ├── persistant_storage_service.h │ │ │ │ │ ├── properties_container.h │ │ │ │ │ ├── property_value_statics.h │ │ │ │ │ └── type_info_factory.h │ │ │ │ ├── iterator_adapter.h │ │ │ │ ├── iterator_impl.h │ │ │ │ ├── json_statics_util.h │ │ │ │ ├── key_value_pair_impl.h │ │ │ │ ├── library_interfaces.h │ │ │ │ ├── library_util.h │ │ │ │ ├── logger_library.h │ │ │ │ ├── logger_macros.h │ │ │ │ ├── logger_util.h │ │ │ │ ├── mailbox_dispatcher.h │ │ │ │ ├── mailbox_library.h │ │ │ │ ├── namespace_statics_util.h │ │ │ │ ├── node_impl.h │ │ │ │ ├── object_base_class.h │ │ │ │ ├── object_cache.h │ │ │ │ ├── object_class_wrapper.h │ │ │ │ ├── object_dispatch_class.h │ │ │ │ ├── object_dispatch_impl.h │ │ │ │ ├── object_dispatch_type_info.h │ │ │ │ ├── object_factory_util.h │ │ │ │ ├── pair_util.h │ │ │ │ ├── parameter_base.h │ │ │ │ ├── perf_counter_util.h │ │ │ │ ├── persistant_storage_service_util.h │ │ │ │ ├── property_type_info.h │ │ │ │ ├── ptr_finalizer.h │ │ │ │ ├── service_provider_impl.h │ │ │ │ ├── string_util.h │ │ │ │ ├── type_info.h │ │ │ │ ├── type_info_create_parameter.h │ │ │ │ ├── type_info_factory_util.h │ │ │ │ └── util_stl.h │ │ │ ├── logger_type_info.h │ │ │ ├── macros.h │ │ │ ├── node_statics_util.h │ │ │ ├── object_dispatch_util.h │ │ │ ├── object_ptr.h │ │ │ ├── pal.h │ │ │ ├── pal_buffer.h │ │ │ ├── pplxtasks.h │ │ │ ├── pv_util.h │ │ │ ├── pv_util_stl.h │ │ │ ├── string_t.h │ │ │ ├── type_info_statics_util.h │ │ │ ├── type_traits_util.h │ │ │ ├── value_alloc.h │ │ │ ├── value_ptr.h │ │ │ └── weak_reference.h │ │ ├── pal │ │ │ ├── guiddef.h │ │ │ ├── library │ │ │ │ ├── critical_section.h │ │ │ │ ├── pal_once_util.h │ │ │ │ ├── read_write_lock.h │ │ │ │ ├── signal.h │ │ │ │ ├── spin_lock.h │ │ │ │ ├── thread.h │ │ │ │ └── trace_util.h │ │ │ ├── pal_api.h │ │ │ ├── pal_atomic.h │ │ │ ├── pal_core.h │ │ │ ├── pal_critical_section.h │ │ │ ├── pal_datetime.h │ │ │ ├── pal_foundation.h │ │ │ ├── pal_hstring.h │ │ │ ├── pal_init_once.h │ │ │ ├── pal_load_library.h │ │ │ ├── pal_semaphore.h │ │ │ ├── pal_signal.h │ │ │ ├── pal_std_thread.h │ │ │ ├── pal_str.h │ │ │ ├── pal_thread.h │ │ │ └── pal_types.h │ │ ├── pmod │ │ │ ├── binding_ptr.h │ │ │ ├── command_ptr.h │ │ │ ├── errors.h │ │ │ ├── event_connection.h │ │ │ ├── eventhandler_util.h │ │ │ ├── interfaces.h │ │ │ ├── interfaces │ │ │ │ ├── binding.h │ │ │ │ ├── command.h │ │ │ │ ├── observable_collection.h │ │ │ │ ├── observable_object.h │ │ │ │ ├── source_model.h │ │ │ │ └── viewmodel_factory.h │ │ │ ├── library │ │ │ │ ├── can_execute_changed_event_args_impl.h │ │ │ │ ├── class_options.h │ │ │ │ ├── class_statics_util.h │ │ │ │ ├── collection_viewmodel_class_wrapper.h │ │ │ │ ├── command_class_wrapper.h │ │ │ │ ├── command_impl.h │ │ │ │ ├── command_type_info.h │ │ │ │ ├── event_model_event_args_impl.h │ │ │ │ ├── factory_util.h │ │ │ │ ├── fast_template_library.h │ │ │ │ ├── interfaces.h │ │ │ │ ├── interfaces │ │ │ │ │ ├── class_statics.h │ │ │ │ │ ├── collection_viewmodel_class.h │ │ │ │ │ ├── command_class.h │ │ │ │ │ ├── command_viewmodel_class.h │ │ │ │ │ ├── expression_binding_class.h │ │ │ │ │ ├── fast_items_container_parameters.h │ │ │ │ │ ├── model_class_factory.h │ │ │ │ │ ├── multi_source_binding_class.h │ │ │ │ │ ├── multi_source_collection_viewmodel_class.h │ │ │ │ │ ├── multi_source_viewmodel_class.h │ │ │ │ │ ├── object_node_class.h │ │ │ │ │ ├── object_statics.h │ │ │ │ │ ├── object_statics_class.h │ │ │ │ │ ├── observable_collection_class.h │ │ │ │ │ ├── observable_collection_statics.h │ │ │ │ │ ├── observable_object_class.h │ │ │ │ │ ├── observable_object_info_class.h │ │ │ │ │ ├── observable_object_statics.h │ │ │ │ │ ├── property_binding_class.h │ │ │ │ │ ├── source_model_delegate.h │ │ │ │ │ ├── type_info_factory.h │ │ │ │ │ ├── value_converter.h │ │ │ │ │ ├── view_model_parameters.h │ │ │ │ │ ├── viewmodel_class.h │ │ │ │ │ └── viewmodel_factory_class.h │ │ │ │ ├── library_util.h │ │ │ │ ├── model_library.h │ │ │ │ ├── mtl.h │ │ │ │ ├── notify_collection_changed_event_args.h │ │ │ │ ├── object_factory.h │ │ │ │ ├── object_node_class_wrapper.h │ │ │ │ ├── object_statics_keys.h │ │ │ │ ├── object_statics_util.h │ │ │ │ ├── observable_collection_class_wrapper.h │ │ │ │ ├── observable_collection_impl.h │ │ │ │ ├── observable_collection_stl.h │ │ │ │ ├── observable_collection_type_info.h │ │ │ │ ├── observable_collection_util.h │ │ │ │ ├── observable_object_class_wrapper.h │ │ │ │ ├── observable_object_impl.h │ │ │ │ ├── observable_object_type_info.h │ │ │ │ ├── observable_statics_util.h │ │ │ │ ├── pmod_lib_api.h │ │ │ │ ├── property_changed_event_args_impl.h │ │ │ │ ├── single_source_creator_entry.h │ │ │ │ ├── type_adapter_base.h │ │ │ │ ├── type_info_factory_util.h │ │ │ │ └── vmtl.h.h │ │ │ ├── logger_type_info.h │ │ │ ├── object_node_ptr.h │ │ │ ├── observable_collection_ptr.h │ │ │ ├── observable_object_ptr.h │ │ │ ├── perf_type_info.h │ │ │ ├── pmod_api.h │ │ │ ├── proxy │ │ │ │ └── proxy_util.h │ │ │ ├── source_model_ptr.h │ │ │ └── type_info_declare.h │ │ └── winrt │ │ │ ├── Iterator.h │ │ │ ├── MoAsyncOperationAdapterBase.h │ │ │ ├── MoCommandAdapterBase.h │ │ │ ├── MoEnumValueAdapterBase.h │ │ │ ├── MoObservableCollectionAdapterBase.h │ │ │ ├── MoObservableObjectAdapterBase.h │ │ │ └── com_activation.h │ └── objectivec │ │ ├── PMODAdapter │ │ ├── PMODAdapter.h │ │ ├── PMODAdapterFactory.h │ │ ├── PMODAdapterLoggerTypeInfo.h │ │ ├── PMODAdapterProtocol.h │ │ ├── PMODAsyncOperation.h │ │ ├── PMODAsyncOperationProtocol.h │ │ ├── PMODBindingProtocol.h │ │ ├── PMODCollection.h │ │ ├── PMODCollectionProtocol.h │ │ ├── PMODCommand.h │ │ ├── PMODCommandProtocol.h │ │ ├── PMODDictionary.h │ │ ├── PMODDispatcherQueueAdapter.h │ │ ├── PMODEnumValue.h │ │ ├── PMODEventHandlerAdapter.h │ │ ├── PMODFoundation.h │ │ ├── PMODFoundationProtocol.h │ │ ├── PMODGuid.h │ │ ├── PMODInspectable.h │ │ ├── PMODInterfaces.h │ │ ├── PMODInterop.h │ │ ├── PMODList.h │ │ ├── PMODListProtocol.h │ │ ├── PMODLogger.h │ │ ├── PMODObjectBase.h │ │ ├── PMODObjectBaseProtocol.h │ │ ├── PMODObjectDispatch.h │ │ ├── PMODObjectDispatchProtocol.h │ │ ├── PMODObjectNode.h │ │ ├── PMODObjectNodeProtocol.h │ │ ├── PMODObjectTypeInfoProtocol.h │ │ ├── PMODObservableObject.h │ │ └── PMODObservableObjectProtocol.h │ │ ├── PMODLibAdapter │ │ └── PMODBindingBase.h │ │ └── inc │ │ └── dispatch_queue_adapter.h ├── src │ ├── FoundationUtilHelper.cpp │ └── GuidHelper.cpp └── winrt │ ├── RuntimeExports.cpp │ ├── adapter │ └── managed │ │ ├── AsyncOperation.winrt.cs │ │ ├── BaseCoreAdapter.winrt.cs │ │ ├── BaseModelAdapter.winrt.cs │ │ ├── BaseObjectAdapter.winrt.cs │ │ ├── ClassFactory.winrt.cs │ │ ├── CollectionModel.winrt.cs │ │ ├── CommandModel.winrt.cs │ │ ├── Dictionary.winrt.cs │ │ ├── DispatcherAdapter.cs │ │ └── PropertyModel.winrt.cs │ ├── dll │ ├── Microsoft.PropertyModel.def │ ├── dllmain.cpp │ └── dllmain.h │ ├── dllLibrary │ ├── dllmain.cpp │ └── dllmain.h │ ├── idl │ └── Microsoft.PropertyModel.Library.idl │ ├── moproxy │ ├── MoAdapterProxyInterface.h │ ├── MoAsyncOperationProxy.h │ ├── MoCommandProxy.h │ ├── MoCoreEventHandlerAdapter.h │ ├── MoCoreProxyFactory.cpp │ ├── MoCoreProxyFactory.h │ ├── MoCoreProxyStatics.cpp │ ├── MoCoreProxyStatics.h │ ├── MoDictionaryProxy.h │ ├── MoEnumValueProxy.h │ ├── MoEventSourceProxy.h │ ├── MoModelProxy.h │ ├── MoObservableCollectionProxy.h │ └── MoObservableObjectProxy.h │ ├── projection │ ├── ArrayRefCountWrapperIterator.h │ ├── FreeThreadAdapterFactory.cpp │ ├── FreeThreadAdapterFactory.h │ ├── FtmBase.h │ ├── MoAsyncOperationAdapter.cpp │ ├── MoAsyncOperationAdapter.h │ ├── MoAsyncOperationAdapterFactory.cpp │ ├── MoAsyncOperationTypeInfoAdapter.h │ ├── MoBaseAdapter.h │ ├── MoBaseDelegateAdapter.h │ ├── MoBindingBaseAdapter.h │ ├── MoCallbackAdapterBase.h │ ├── MoCommandAdapter.cpp │ ├── MoCommandAdapter.h │ ├── MoCommandInfoAdapter.h │ ├── MoCoreAdapterFactory.cpp │ ├── MoCoreLoggerAdapter.h │ ├── MoCoreLoggerFactory.cpp │ ├── MoCoreLoggerFactory.h │ ├── MoCustomPropertyProviderAdapter.cpp │ ├── MoCustomPropertyProviderAdapter.h │ ├── MoDictionaryFactory.h │ ├── MoDispatcherAdapter.h │ ├── MoDispatcherStatics.cpp │ ├── MoDispatcherStatics.h │ ├── MoEnumTypeInfoAdapter.h │ ├── MoEnumValueAdapter.h │ ├── MoEnumValueInterop.cpp │ ├── MoEnumValueInterop.h │ ├── MoEventHandler.h │ ├── MoExpressionAdapter.h │ ├── MoExpressionBindingAdapter.h │ ├── MoExpressionBindingFactory.cpp │ ├── MoExpressionBindingFactory.h │ ├── MoExpressionFactory.cpp │ ├── MoExpressionFactory.h │ ├── MoFactory.cpp │ ├── MoJsonUtils.cpp │ ├── MoJsonUtils.h │ ├── MoKeyValuePairAdapter.h │ ├── MoLogParameterFactory.cpp │ ├── MoLogParameterFactory.h │ ├── MoLogRecordFactory.cpp │ ├── MoLogRecordFactory.h │ ├── MoModelFactory.h │ ├── MoModelFactoryAdapter.h │ ├── MoModelFreeThreadMarshalAdapter.h │ ├── MoModelModelFactory.cpp │ ├── MoModelModelFactory.h │ ├── MoModelTypeInfoAdapter.h │ ├── MoModelTypeInfoStatics.cpp │ ├── MoModelTypeInfoStatics.h │ ├── MoMultiSourceBindingAdapter.h │ ├── MoMultiSourceBindingFactory.cpp │ ├── MoMultiSourceBindingFactory.h │ ├── MoObjectAdapter.h │ ├── MoObjectDispatchAdapter.cpp │ ├── MoObjectDispatchAdapter.h │ ├── MoObjectNodeAdapter.h │ ├── MoObjectSerializerAdapter.h │ ├── MoObservableCollectionAdapter.cpp │ ├── MoObservableCollectionAdapter.h │ ├── MoObservableCollectionInfoAdapter.h │ ├── MoObservableObjectAdapter.cpp │ ├── MoObservableObjectAdapter.h │ ├── MoObservableObjectInfoAdapter.h │ ├── MoObservableObjectMapAdapter.h │ ├── MoObservableVector.h │ ├── MoPropertyBindingAdapter.h │ ├── MoPropertyBindingFactory.cpp │ ├── MoPropertyBindingFactory.h │ ├── MoPropertyDataInfoAdapter.h │ ├── MoSourceModelAdapter.h │ ├── MoSourceModelDelegateAdapter.h │ ├── MoStreamProviderAdapter.h │ ├── MoXamlCommandAdapter.cpp │ ├── MoXamlCommandAdapter.h │ ├── VectorChangedEventArgs.h │ ├── VectorView.cpp │ ├── VectorView.h │ ├── comModule.cpp │ └── comModule.h │ └── projection_lib │ ├── MoAsyncOperationClassAdapter.cpp │ ├── MoAsyncOperationClassAdapter.h │ ├── MoAsyncOperationFactory.cpp │ ├── MoAsyncOperationFactory.h │ ├── MoAsyncOperationTypeInfoFactory.cpp │ ├── MoAsyncOperationTypeInfoFactory.h │ ├── MoClassStatics.cpp │ ├── MoClassStatics.h │ ├── MoCollectionViewModelAdapter.h │ ├── MoCollectionViewModelFactory.cpp │ ├── MoCollectionViewModelFactory.h │ ├── MoCommandClassAdapter.cpp │ ├── MoCommandClassAdapter.h │ ├── MoCommandFactory.cpp │ ├── MoCommandFactory.h │ ├── MoCommandInfoFactory.cpp │ ├── MoCommandInfoFactory.h │ ├── MoCommandViewModelAdapter.h │ ├── MoCommandViewModelFactory.cpp │ ├── MoCommandViewModelFactory.h │ ├── MoCoreLibraryAdapterFactory.cpp │ ├── MoEnumTypeInfoFactory.cpp │ ├── MoEnumTypeInfoFactory.h │ ├── MoLibraryFactory.cpp │ ├── MoModelOverridesBaseAdapter.h │ ├── MoMultiSourceCollectionViewModelAdapter.h │ ├── MoMultiSourceCollectionViewModelFactory.cpp │ ├── MoMultiSourceCollectionViewModelFactory.h │ ├── MoMultiSourceViewModelAdapter.h │ ├── MoMultiSourceViewModelFactory.cpp │ ├── MoMultiSourceViewModelFactory.h │ ├── MoObjectClassAdapter.h │ ├── MoObjectDispatchFactory.h │ ├── MoObjectNodeClassAdapter.h │ ├── MoObservableCollectionClassAdapter.cpp │ ├── MoObservableCollectionClassAdapter.h │ ├── MoObservableCollectionFactory.cpp │ ├── MoObservableCollectionFactory.h │ ├── MoObservableCollectionInfoFactory.cpp │ ├── MoObservableCollectionInfoFactory.h │ ├── MoObservableObjectClassAdapter.cpp │ ├── MoObservableObjectClassAdapter.h │ ├── MoObservableObjectFactory.cpp │ ├── MoObservableObjectFactory.h │ ├── MoObservableObjectInfoFactory.cpp │ ├── MoObservableObjectInfoFactory.h │ ├── MoViewModel.h │ ├── MoViewModelAdapter.h │ ├── MoViewModelFactory.cpp │ ├── MoViewModelFactory.h │ ├── MoViewModelFactoryAdapter.h │ ├── MoViewModelFactoryFactory.cpp │ ├── MoViewModelFactoryFactory.h │ ├── MoViewModelInfoFactory.cpp │ ├── MoViewModelInfoFactory.h │ ├── pch.cpp │ └── pch.h └── tests ├── __build ├── AndroidStudio │ └── PMODTest │ │ ├── .gitignore │ │ ├── PMODTest.iml │ │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── microsoft │ │ │ │ └── pmod │ │ │ │ └── pmodtest │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── pmod │ │ │ │ │ └── pmodtest │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── microsoft │ │ │ └── pmod │ │ │ └── pmodtest │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── IntelliJ │ └── pmod_test │ │ └── pmod_test.iml ├── Xcode │ ├── pmod.test │ │ ├── Test_iOS │ │ │ └── Info.plist │ │ ├── Tests │ │ │ └── Info.plist │ │ └── pmod.test.xcodeproj │ │ │ └── project.pbxproj │ ├── pmod.tests.xcworkspace │ │ └── contents.xcworkspacedata │ └── pmod_lib.test │ │ ├── Tests_lib │ │ └── Info.plist │ │ ├── Tests_lib_iOS │ │ └── Info.plist │ │ └── pmod_lib.test.xcodeproj │ │ └── project.pbxproj └── vs │ ├── Directory.Build.props │ ├── SchemaStub │ └── SchemaStub.csproj │ ├── classic │ ├── LibraryUnitTest.exe │ │ ├── LibraryUnitTest.exe.vcxproj │ │ └── LibraryUnitTest.exe.vcxproj.filters │ ├── TestModel.dll │ │ ├── TestModel.dll.vcxproj │ │ └── TestModel.dll.vcxproj.filters │ ├── TestModelLib.dll │ │ ├── TestModelLib.dll.vcxproj │ │ └── TestModelLib.dll.vcxproj.filters │ ├── UnitTest.exe │ │ ├── UnitTest.exe.vcxproj │ │ └── UnitTest.exe.vcxproj.filters │ └── test.classic.cpp.props │ ├── csharp │ └── Microsoft.PropertyModel.Net.Test │ │ └── Microsoft.PropertyModel.Net.Test.csproj │ ├── pmod.tests.sln │ └── uwp │ ├── Microsoft.PropertyModel.Proxy.Test │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Microsoft.PropertyModel.Proxy.Test.UWP.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ └── project.json │ ├── Microsoft.PropertyModel.Test │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Microsoft.PropertyModel.Test.UWP.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ └── UnitTestApp.rd.xml │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ └── project.json │ ├── TestModel.dll │ ├── TesModel_uwp.dll.vcxproj │ ├── TesModel_uwp.dll.vcxproj.filters │ ├── TestModel.def │ ├── TestModel.idl │ ├── TestModel_p.h │ ├── TestModel_uwp.dll.vcxproj.filters │ └── dllmain.cpp │ └── uwp.cpp.props └── src ├── schemas ├── CommandTypes.cs ├── EnumTypes.cs ├── MethodSupport.cs ├── StructTypes.cs ├── TestFactory.cs ├── TypeProperties.cs ├── test_model.schema ├── test_model_attributes.json └── test_model_codegen_config.json └── src ├── cpp ├── TestModelRegister.cpp ├── TestModelRegisterCallback.cpp ├── TestModelRegisterIf.cpp ├── test_cases │ ├── foundation │ │ ├── AsyncOperationImplAdapter.h │ │ ├── AsyncOperationImplTest.cpp │ │ ├── DictionaryImplTest.cpp │ │ ├── EnumerableImplTest.cpp │ │ ├── ErrorTypeInfoTest.cpp │ │ ├── ObjectDispatchImplTest.cpp │ │ ├── PplxTaskImplTest.cpp │ │ ├── PropertyDataImplTest.cpp │ │ └── PropertyValueTest.cpp │ ├── gpengine │ │ └── GoldenParserTest.cpp │ ├── model │ │ ├── CommandImplTest.cpp │ │ ├── ObservableCollectionImplTest.cpp │ │ └── ObservableObjectImplTest.cpp │ ├── model_library │ │ ├── AsyncOperationClassTest.cpp │ │ ├── FastModelTest.cpp │ │ ├── JsonParserTest.cpp │ │ ├── ObjectFactoryLibTest.cpp │ │ ├── ObservableCollectionClassTest.cpp │ │ ├── ObservableObjectClassTest.cpp │ │ └── PropertyDataClassTest.cpp │ ├── proxy │ │ └── ProxyImplTest.cpp │ └── shared │ │ ├── AsyncOperationTest.cpp │ │ ├── AsyncOperationTest.h │ │ ├── ObjectFactoryTest.cpp │ │ ├── ObservableCollectionTest.cpp │ │ ├── ObservableCollectionTest.h │ │ ├── PplxTasksTest.cpp │ │ ├── PplxTasksTest.h │ │ ├── PropertyDataTest.cpp │ │ └── PropertyDataTest.h ├── test_factory │ ├── MethodSupportImpl.cpp │ ├── TestFactory.cpp │ └── TypePropertiesTest.cpp └── test_harness │ ├── TestRunner.cpp │ ├── UnitTestBase.cpp │ ├── UnitTestBase.h │ ├── pch.cpp │ └── pch.h ├── java ├── pmod │ └── com │ │ └── microsoft │ │ └── pmod │ │ └── test │ │ ├── DictionaryTest.java │ │ ├── ObservableCollectionTest.java │ │ ├── ObservableObjectTest.java │ │ ├── PropertyValueTest.java │ │ └── SimpleRef.java ├── pmod_android │ └── com │ │ └── microsoft │ │ └── pmod │ │ └── test │ │ └── TestCaseBase.java ├── pmod_desktop │ └── com │ │ └── microsoft │ │ └── pmod │ │ └── test │ │ └── TestCaseBase.java ├── testmodel │ └── com │ │ └── microsoft │ │ └── testmodel │ │ └── test │ │ └── TypePropertiesTest.java └── testmodel_desktop │ └── com │ └── microsoft │ └── testmodel │ └── test │ └── TestCaseBase.java ├── managed ├── coreclr │ ├── ActivateHelper.cs │ ├── ObservableObjectHelper.coreclr.cs │ ├── PropertyValueTest.cs │ ├── TestModelHelper.coreclr.cs │ └── TestModelTypeInfoStub.cs ├── shared │ ├── DictionaryTest.cs │ ├── TestModelHelper.cs │ └── TypePropertiesTest.cs └── uwp │ ├── ActivateHelper.cs │ ├── ObservableObjectHelper.uwp.cs │ ├── ProxyTest.cs │ ├── TestModelHelper.uwp.cs │ └── TestModelTypeInfoStub.cs ├── nodejs ├── dictionaryTest.js └── observableObjectTest.js └── objectivec ├── PMODDictionaryTest.m ├── PMODTypePropertiesImplTest.mm ├── PMODTypePropertiesLibTest.mm ├── PMODTypePropertiesTest.h ├── PMODTypePropertiesTest.m └── RunTests.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /samples/DemoApp/__build/AndroidStudio/DemoAppUI/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /samples/DemoApp/__build/AndroidStudio/DemoAppUI/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/DemoApp/__build/android_ndk/impl/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_shared 2 | 3 | -------------------------------------------------------------------------------- /samples/DemoApp/__build/android_ndk/lib/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/__build/android_ndk/lib/build.cmd -------------------------------------------------------------------------------- /samples/DemoApp/__build/android_ndk/lib/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_shared 2 | 3 | -------------------------------------------------------------------------------- /samples/DemoApp/__build/vs.build/DemoApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/__build/vs.build/DemoApp.sln -------------------------------------------------------------------------------- /samples/DemoApp/__build/vs.build/uwp/DemoApp.dll/DemoApp.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllGetActivationFactory PRIVATE 3 | -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/AppClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/AppClass.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/AppClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/AppClass.h -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/AppClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/AppClassFactory.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/ItemClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/ItemClass.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/ItemClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/ItemClass.h -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp/jni/jniDemoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp/jni/jniDemoApp.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp_impl/DemoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp_impl/DemoApp.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/cpp_impl/jni/jniDemoApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/cpp_impl/jni/jniDemoApp.cpp -------------------------------------------------------------------------------- /samples/DemoApp/src/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/electron/main.js -------------------------------------------------------------------------------- /samples/DemoApp/src/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/electron/package.json -------------------------------------------------------------------------------- /samples/DemoApp/src/electron/styles/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/electron/styles/window.css -------------------------------------------------------------------------------- /samples/DemoApp/src/electron/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/electron/window.html -------------------------------------------------------------------------------- /samples/DemoApp/src/electron/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/electron/window.js -------------------------------------------------------------------------------- /samples/DemoApp/src/schema/DemoApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/schema/DemoApp.cs -------------------------------------------------------------------------------- /samples/DemoApp/src/schema/DemoApp.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/DemoApp/src/schema/DemoApp.schema -------------------------------------------------------------------------------- /samples/Movies/__build/AndroidStudio/MoviesUI/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /samples/Movies/__build/AndroidStudio/MoviesUI/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/Movies/__build/android_ndk/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/android_ndk/build.cmd -------------------------------------------------------------------------------- /samples/Movies/__build/android_ndk/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/android_ndk/jni/Android.mk -------------------------------------------------------------------------------- /samples/Movies/__build/android_ndk/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/android_ndk/log.txt -------------------------------------------------------------------------------- /samples/Movies/__build/vs/Android/MoviesUI/app/build/intermediates/incremental/compileArm7DebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /samples/Movies/__build/vs/Android/MoviesUI/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /samples/Movies/__build/vs/Android/movies/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/vs/Android/movies/pch.h -------------------------------------------------------------------------------- /samples/Movies/__build/vs/Movies.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/vs/Movies.sln -------------------------------------------------------------------------------- /samples/Movies/__build/vs/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/vs/nuget.config -------------------------------------------------------------------------------- /samples/Movies/__build/vs/uwp/Movies.dll/Movies.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllGetActivationFactory PRIVATE 3 | -------------------------------------------------------------------------------- /samples/Movies/__build/vs/uwp/MoviesUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/__build/vs/uwp/MoviesUI/App.xaml -------------------------------------------------------------------------------- /samples/Movies/src/cpp/Movies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/cpp/Movies.cpp -------------------------------------------------------------------------------- /samples/Movies/src/cpp/MoviesApiService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/cpp/MoviesApiService.cpp -------------------------------------------------------------------------------- /samples/Movies/src/cpp/jni/jniCppRestSdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/cpp/jni/jniCppRestSdk.cpp -------------------------------------------------------------------------------- /samples/Movies/src/cpp/jni/jniMovies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/cpp/jni/jniMovies.cpp -------------------------------------------------------------------------------- /samples/Movies/src/cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/cpp/pch.h -------------------------------------------------------------------------------- /samples/Movies/src/objectivec/PMODMoviesFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/objectivec/PMODMoviesFactory.h -------------------------------------------------------------------------------- /samples/Movies/src/objectivec/PMODMoviesFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/objectivec/PMODMoviesFactory.m -------------------------------------------------------------------------------- /samples/Movies/src/schema/Movies.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/schema/Movies.schema -------------------------------------------------------------------------------- /samples/Movies/src/schema/MoviesApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/schema/MoviesApiService.cs -------------------------------------------------------------------------------- /samples/Movies/src/schema/MoviesApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/Movies/src/schema/MoviesApp.cs -------------------------------------------------------------------------------- /samples/__build/vs/cpp.configs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/__build/vs/cpp.configs.props -------------------------------------------------------------------------------- /samples/__build/vs/uwp.cpp.configs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/samples/__build/vs/uwp.cpp.configs.props -------------------------------------------------------------------------------- /src/__build/IntelliJ/pmod/pmod.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/IntelliJ/pmod/pmod.iml -------------------------------------------------------------------------------- /src/__build/Xcode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/Xcode/build.sh -------------------------------------------------------------------------------- /src/__build/Xcode/build_codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/Xcode/build_codegen.sh -------------------------------------------------------------------------------- /src/__build/Xcode/pmod_nodejs/nodejs.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/Xcode/pmod_nodejs/nodejs.xcconfig -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/android_ndk/pmod/build.cmd -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/android_ndk/pmod/jni/Android.mk -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_shared 2 | 3 | -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod_lib/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/android_ndk/pmod_lib/build.cmd -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod_lib/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/android_ndk/pmod_lib/jni/Android.mk -------------------------------------------------------------------------------- /src/__build/android_ndk/pmod_lib/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_shared 2 | 3 | -------------------------------------------------------------------------------- /src/__build/ant/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/ant/build.xml -------------------------------------------------------------------------------- /src/__build/make_files/common_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/common_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/foundation_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/foundation_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/jansson_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/jansson_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/jni_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/jni_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/model_library_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/model_library_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/model_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/model_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/pal_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/pal_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/pinvoke_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/pinvoke_sources.inc -------------------------------------------------------------------------------- /src/__build/make_files/unix_sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/make_files/unix_sources.inc -------------------------------------------------------------------------------- /src/__build/vs/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/Directory.Build.props -------------------------------------------------------------------------------- /src/__build/vs/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/Directory.Build.targets -------------------------------------------------------------------------------- /src/__build/vs/NuGet/CodeGenPackage/CodeGenPackage.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/Microsoft.PropertyModel.Library.uwp/Microsoft.PropertyModel.Library.uwp.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/Microsoft.PropertyModel.Net/Microsoft.PropertyModel.Net.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/Microsoft.PropertyModel.uwp/Microsoft.PropertyModel.uwp.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/autopkg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/autopkg.ps1 -------------------------------------------------------------------------------- /src/__build/vs/NuGet/build.nuget.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/build.nuget.cmd -------------------------------------------------------------------------------- /src/__build/vs/NuGet/coapp.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/coapp.proj -------------------------------------------------------------------------------- /src/__build/vs/NuGet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/packages.config -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod.nuget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/pmod.nuget.sln -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod.nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/pmod.nuget.targets -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod.uwp/pmod.uwp.nuproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/pmod.uwp/pmod.uwp.nuproj -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod.uwp/pmod.uwp.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod_lib.net/pmod_lib.net.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod_lib.uwp/pmod_lib.uwp.txt: -------------------------------------------------------------------------------- 1 | This is your NuGet package. -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmod_libsdk.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/pmod_libsdk.autopkg -------------------------------------------------------------------------------- /src/__build/vs/NuGet/pmodsdk.autopkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/NuGet/pmodsdk.autopkg -------------------------------------------------------------------------------- /src/__build/vs/NuGet/restore.cmd: -------------------------------------------------------------------------------- 1 | %nugetexe% restore packages.config -SolutionDirectory .. 2 | -------------------------------------------------------------------------------- /src/__build/vs/__codegen/pmod.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/__codegen/pmod.proj -------------------------------------------------------------------------------- /src/__build/vs/android/android.cpp.configs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/android.cpp.configs.props -------------------------------------------------------------------------------- /src/__build/vs/android/android.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/android.cpp.props -------------------------------------------------------------------------------- /src/__build/vs/android/pmod/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/pmod/pch.h -------------------------------------------------------------------------------- /src/__build/vs/android/pmod/pmod.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/pmod/pmod.vcxproj -------------------------------------------------------------------------------- /src/__build/vs/android/pmod/pmod.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/pmod/pmod.vcxproj.filters -------------------------------------------------------------------------------- /src/__build/vs/android/pmod_lib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/pmod_lib/pch.h -------------------------------------------------------------------------------- /src/__build/vs/android/pmod_lib/pmod_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/android/pmod_lib/pmod_lib.vcxproj -------------------------------------------------------------------------------- /src/__build/vs/build.pmod.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/build.pmod.cmd -------------------------------------------------------------------------------- /src/__build/vs/classic/classic.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/classic/classic.cpp.props -------------------------------------------------------------------------------- /src/__build/vs/classic/jansson/jansson.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/classic/jansson/jansson.vcxproj -------------------------------------------------------------------------------- /src/__build/vs/classic/pmod.dll/pmod.dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/classic/pmod.dll/pmod.dll.vcxproj -------------------------------------------------------------------------------- /src/__build/vs/classic/pmod_jni.dll/jdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/classic/pmod_jni.dll/jdk.props -------------------------------------------------------------------------------- /src/__build/vs/codegen/codegen.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/codegen/codegen.cpp.props -------------------------------------------------------------------------------- /src/__build/vs/codegen/pmodcodegen/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/codegen/pmodcodegen/commands.txt -------------------------------------------------------------------------------- /src/__build/vs/cpp.configs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/cpp.configs.props -------------------------------------------------------------------------------- /src/__build/vs/cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/cpp.props -------------------------------------------------------------------------------- /src/__build/vs/nodejs/nodejs.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/nodejs/nodejs.cpp.props -------------------------------------------------------------------------------- /src/__build/vs/pmod.android.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/pmod.android.sln -------------------------------------------------------------------------------- /src/__build/vs/pmod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/pmod.sln -------------------------------------------------------------------------------- /src/__build/vs/pmod_node.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/pmod_node.sln -------------------------------------------------------------------------------- /src/__build/vs/proj/cpp-gpengine.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/cpp-gpengine.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/foundation_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/foundation_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/foundation_pal_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/foundation_pal_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/gpengine.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/gpengine.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/jansson_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/jansson_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/jni_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/jni_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/model_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/model_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/model_library_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/model_library_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/pinvoke_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/pinvoke_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/pmod_node.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/pmod_node.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/pmod_proxy_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/pmod_proxy_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/pmod_winrt_pal_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/pmod_winrt_pal_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/pmodcodegen_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/pmodcodegen_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/src_files.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/src_files.vcxitems -------------------------------------------------------------------------------- /src/__build/vs/proj/src_files.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/proj/src_files.vcxitems.filters -------------------------------------------------------------------------------- /src/__build/vs/uwp/pmod.dll/pmod.dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/uwp/pmod.dll/pmod.dll.vcxproj -------------------------------------------------------------------------------- /src/__build/vs/uwp/uwp.cpp.configs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/uwp/uwp.cpp.configs.props -------------------------------------------------------------------------------- /src/__build/vs/uwp/uwp.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/uwp/uwp.cpp.props -------------------------------------------------------------------------------- /src/__build/vs/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version.json -------------------------------------------------------------------------------- /src/__build/vs/version.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version.proj -------------------------------------------------------------------------------- /src/__build/vs/version.txt: -------------------------------------------------------------------------------- 1 | 1.0 2 | -pre -------------------------------------------------------------------------------- /src/__build/vs/version/Microsoft.PropertyModel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/Microsoft.PropertyModel.rc -------------------------------------------------------------------------------- /src/__build/vs/version/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/Version.cs -------------------------------------------------------------------------------- /src/__build/vs/version/default/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/default/version.h -------------------------------------------------------------------------------- /src/__build/vs/version/pmod.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmod.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmod_invoke.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmod_invoke.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmod_lib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmod_lib.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmod_proxy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmod_proxy.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmodcodegen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmodcodegen.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmodcodegentask.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmodcodegentask.rc -------------------------------------------------------------------------------- /src/__build/vs/version/pmodschemaparser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__build/vs/version/pmodschemaparser.rc -------------------------------------------------------------------------------- /src/__generated/model/ErrorsTypeInfo.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__generated/model/ErrorsTypeInfo.g.cpp -------------------------------------------------------------------------------- /src/__generated/model/PerfTypeInfo.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__generated/model/PerfTypeInfo.g.cpp -------------------------------------------------------------------------------- /src/__generated/winrt/Errors.winrt.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__generated/winrt/Errors.winrt.g.cpp -------------------------------------------------------------------------------- /src/__generated/winrt/Perf.winrt.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/__generated/winrt/Perf.winrt.g.cpp -------------------------------------------------------------------------------- /src/android/mbstowcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/android/mbstowcs.cpp -------------------------------------------------------------------------------- /src/android/pal_trace_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/android/pal_trace_log.cpp -------------------------------------------------------------------------------- /src/android/wcstombs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/android/wcstombs.cpp -------------------------------------------------------------------------------- /src/codegen/gpengine/CGTParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/CGTParser.cpp -------------------------------------------------------------------------------- /src/codegen/gpengine/CGTParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/CGTParser.h -------------------------------------------------------------------------------- /src/codegen/gpengine/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/Parser.cpp -------------------------------------------------------------------------------- /src/codegen/gpengine/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/Parser.h -------------------------------------------------------------------------------- /src/codegen/gpengine/SymbolParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/SymbolParser.cpp -------------------------------------------------------------------------------- /src/codegen/gpengine/SymbolParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/gpengine/SymbolParser.h -------------------------------------------------------------------------------- /src/codegen/inc/CodeGenUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/CodeGenUtil.h -------------------------------------------------------------------------------- /src/codegen/inc/ExePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/ExePath.h -------------------------------------------------------------------------------- /src/codegen/inc/Md5Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/Md5Util.h -------------------------------------------------------------------------------- /src/codegen/inc/ModelSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/ModelSchema.h -------------------------------------------------------------------------------- /src/codegen/inc/SchemaSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/SchemaSerializer.h -------------------------------------------------------------------------------- /src/codegen/inc/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/StringUtils.h -------------------------------------------------------------------------------- /src/codegen/inc/ToolUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/inc/ToolUtil.h -------------------------------------------------------------------------------- /src/codegen/md5/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/md5/global.h -------------------------------------------------------------------------------- /src/codegen/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/md5/md5.c -------------------------------------------------------------------------------- /src/codegen/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/md5/md5.h -------------------------------------------------------------------------------- /src/codegen/parser/csharp/ModelSymbolParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/ModelSymbolParser.cpp -------------------------------------------------------------------------------- /src/codegen/parser/csharp/ModelSymbolParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/ModelSymbolParser.h -------------------------------------------------------------------------------- /src/codegen/parser/csharp/SchemaParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/SchemaParser.cpp -------------------------------------------------------------------------------- /src/codegen/parser/csharp/SchemaParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/SchemaParser.h -------------------------------------------------------------------------------- /src/codegen/parser/csharp/sample/model.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/sample/model.schema -------------------------------------------------------------------------------- /src/codegen/parser/csharp/sample/model1.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/sample/model1.model -------------------------------------------------------------------------------- /src/codegen/parser/csharp/sample/model2.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/sample/model2.model -------------------------------------------------------------------------------- /src/codegen/parser/csharp/sample/refModel.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/sample/refModel.model -------------------------------------------------------------------------------- /src/codegen/parser/csharp/sample/refModel.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/csharp/sample/refModel.schema -------------------------------------------------------------------------------- /src/codegen/parser/inc/ParserEngineUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/inc/ParserEngineUtil.h -------------------------------------------------------------------------------- /src/codegen/parser/src/ParserEngineUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/parser/src/ParserEngineUtil.cpp -------------------------------------------------------------------------------- /src/codegen/src/CodeGenUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/CodeGenUtil.cpp -------------------------------------------------------------------------------- /src/codegen/src/ExePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/ExePath.cpp -------------------------------------------------------------------------------- /src/codegen/src/Md5Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/Md5Util.cpp -------------------------------------------------------------------------------- /src/codegen/src/ModelSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/ModelSchema.cpp -------------------------------------------------------------------------------- /src/codegen/src/SchemaSerializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/SchemaSerializer.cpp -------------------------------------------------------------------------------- /src/codegen/src/ToolUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/ToolUtil.cpp -------------------------------------------------------------------------------- /src/codegen/src/pmodcodegentask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/src/pmodcodegentask.cpp -------------------------------------------------------------------------------- /src/codegen/tool/CodeGenToolBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/CodeGenToolBase.cpp -------------------------------------------------------------------------------- /src/codegen/tool/CodeGenToolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/CodeGenToolBase.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpBase.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpBase.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpClasses.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpClasses.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpTypeInfo.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCSharpTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCSharpTypeInfo.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCppBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCppBase.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCppBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCppBase.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCppLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCppLibrary.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateCppLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateCppLibrary.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateFastCppTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateFastCppTemplate.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateFastCppTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateFastCppTemplate.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateImplCppTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateImplCppTemplate.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateImplCppTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateImplCppTemplate.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateJava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateJava.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateJava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateJava.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateKoJavascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateKoJavascript.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateKoJavascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateKoJavascript.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateModelAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateModelAdapter.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateModelAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateModelAdapter.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateNetInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateNetInterop.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateNetInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateNetInterop.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateObjectiveC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateObjectiveC.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateObjectiveC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateObjectiveC.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateProxyJavascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateProxyJavascript.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateProxyJavascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateProxyJavascript.h -------------------------------------------------------------------------------- /src/codegen/tool/GeneratePtrClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GeneratePtrClass.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GeneratePtrClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GeneratePtrClass.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateTypeInfo.cpp -------------------------------------------------------------------------------- /src/codegen/tool/GenerateTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateTypeInfo.h -------------------------------------------------------------------------------- /src/codegen/tool/GenerateWindowsRuntimeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/GenerateWindowsRuntimeAdapter.h -------------------------------------------------------------------------------- /src/codegen/tool/checkdependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/checkdependency.cpp -------------------------------------------------------------------------------- /src/codegen/tool/gccxml2chema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/gccxml2chema.cpp -------------------------------------------------------------------------------- /src/codegen/tool/gencsharpschema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/gencsharpschema.cpp -------------------------------------------------------------------------------- /src/codegen/tool/propertymodelcodegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/tool/propertymodelcodegen.cpp -------------------------------------------------------------------------------- /src/codegen/util/codegen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/util/codegen.json -------------------------------------------------------------------------------- /src/codegen/util/codegen.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/util/codegen.proj -------------------------------------------------------------------------------- /src/codegen/util/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/util/codegen.sh -------------------------------------------------------------------------------- /src/codegen/util/codegen_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/codegen/util/codegen_clean.sh -------------------------------------------------------------------------------- /src/coreclr/cpp/PInvokeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/PInvokeUtils.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/PInvokeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/PInvokeUtils.h -------------------------------------------------------------------------------- /src/coreclr/cpp/foundation/PInvokeDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/foundation/PInvokeDictionary.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/foundation/PInvokeEnumValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/foundation/PInvokeEnumValue.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/foundation/PInvokeLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/foundation/PInvokeLogger.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/foundation/PInvokeObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/foundation/PInvokeObject.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/model/PInvokeCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/model/PInvokeCommand.cpp -------------------------------------------------------------------------------- /src/coreclr/cpp/pinvoke_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/cpp/pinvoke_api.h -------------------------------------------------------------------------------- /src/coreclr/managed/AsyncOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/AsyncOperation.cs -------------------------------------------------------------------------------- /src/coreclr/managed/AsyncOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/AsyncOperationAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ClassFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ClassFactory.cs -------------------------------------------------------------------------------- /src/coreclr/managed/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/Command.cs -------------------------------------------------------------------------------- /src/coreclr/managed/CommandAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/CommandAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/Dictionary.cs -------------------------------------------------------------------------------- /src/coreclr/managed/DictionaryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/DictionaryAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/DispatcherAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/DispatcherAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/EnumValueAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/EnumValueAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/Enumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/Enumerable.cs -------------------------------------------------------------------------------- /src/coreclr/managed/EnumerableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/EnumerableAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/FactoryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/FactoryObject.cs -------------------------------------------------------------------------------- /src/coreclr/managed/InspectableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/InspectableAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/LoggerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/LoggerAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/NativeMethods.cs -------------------------------------------------------------------------------- /src/coreclr/managed/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/Object.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObjectAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObjectAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObjectDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObjectDispatch.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObjectDispatchAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObjectDispatchAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObjectTypeInfoAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObjectTypeInfoAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObservableCollection.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObservableObject.cs -------------------------------------------------------------------------------- /src/coreclr/managed/ObservableObjectAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/ObservableObjectAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/PInvokeCallbackAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/PInvokeCallbackAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/PInvokeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/PInvokeUtils.cs -------------------------------------------------------------------------------- /src/coreclr/managed/PropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/PropertyType.cs -------------------------------------------------------------------------------- /src/coreclr/managed/PropertyTypeInfoAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/PropertyTypeInfoAdapter.cs -------------------------------------------------------------------------------- /src/coreclr/managed/PropertyValueAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/coreclr/managed/PropertyValueAdapter.cs -------------------------------------------------------------------------------- /src/foundation/ActivationFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ActivationFactory.cpp -------------------------------------------------------------------------------- /src/foundation/ActivationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ActivationFactory.h -------------------------------------------------------------------------------- /src/foundation/AdapterFactoryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/AdapterFactoryFactory.cpp -------------------------------------------------------------------------------- /src/foundation/AdapterFactoryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/AdapterFactoryFactory.h -------------------------------------------------------------------------------- /src/foundation/AsyncOperationClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/AsyncOperationClassInfoCache.h -------------------------------------------------------------------------------- /src/foundation/AsyncOperationTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/AsyncOperationTypeInfo.cpp -------------------------------------------------------------------------------- /src/foundation/AsyncOperationTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/AsyncOperationTypeInfo.h -------------------------------------------------------------------------------- /src/foundation/DebugUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/DebugUtil.cpp -------------------------------------------------------------------------------- /src/foundation/DebugUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/DebugUtil.h -------------------------------------------------------------------------------- /src/foundation/DictionaryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/DictionaryBase.h -------------------------------------------------------------------------------- /src/foundation/DictionaryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/DictionaryFactory.cpp -------------------------------------------------------------------------------- /src/foundation/DictionaryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/DictionaryFactory.h -------------------------------------------------------------------------------- /src/foundation/EnumTypeClassInfoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumTypeClassInfoCache.cpp -------------------------------------------------------------------------------- /src/foundation/EnumTypeClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumTypeClassInfoCache.h -------------------------------------------------------------------------------- /src/foundation/EnumTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumTypeInfo.cpp -------------------------------------------------------------------------------- /src/foundation/EnumTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumTypeInfo.h -------------------------------------------------------------------------------- /src/foundation/EnumValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumValue.cpp -------------------------------------------------------------------------------- /src/foundation/EnumValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumValue.h -------------------------------------------------------------------------------- /src/foundation/EnumerableClassInfoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumerableClassInfoCache.cpp -------------------------------------------------------------------------------- /src/foundation/EnumerableClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumerableClassInfoCache.h -------------------------------------------------------------------------------- /src/foundation/EnumerableTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumerableTypeInfo.cpp -------------------------------------------------------------------------------- /src/foundation/EnumerableTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/EnumerableTypeInfo.h -------------------------------------------------------------------------------- /src/foundation/FoundationAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationAssert.cpp -------------------------------------------------------------------------------- /src/foundation/FoundationBaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationBaseTracker.h -------------------------------------------------------------------------------- /src/foundation/FoundationInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationInterfaces.cpp -------------------------------------------------------------------------------- /src/foundation/FoundationLibraryInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationLibraryInstance.cpp -------------------------------------------------------------------------------- /src/foundation/FoundationLibraryInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationLibraryInstance.h -------------------------------------------------------------------------------- /src/foundation/FoundationPrivateInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationPrivateInterfaces.cpp -------------------------------------------------------------------------------- /src/foundation/FoundationTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationTracker.cpp -------------------------------------------------------------------------------- /src/foundation/FoundationTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/FoundationTracker.h -------------------------------------------------------------------------------- /src/foundation/GenericAdapterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/GenericAdapterFactory.cpp -------------------------------------------------------------------------------- /src/foundation/GenericAdapterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/GenericAdapterFactory.h -------------------------------------------------------------------------------- /src/foundation/InterfaceAdapterFactoryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/InterfaceAdapterFactoryBase.h -------------------------------------------------------------------------------- /src/foundation/InterfaceAdapterFactoryHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/InterfaceAdapterFactoryHost.cpp -------------------------------------------------------------------------------- /src/foundation/InterfaceAdapterFactoryHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/InterfaceAdapterFactoryHost.h -------------------------------------------------------------------------------- /src/foundation/MethodInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/MethodInfo.cpp -------------------------------------------------------------------------------- /src/foundation/MethodInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/MethodInfo.h -------------------------------------------------------------------------------- /src/foundation/NamespaceStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/NamespaceStatics.cpp -------------------------------------------------------------------------------- /src/foundation/NamespaceStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/NamespaceStatics.h -------------------------------------------------------------------------------- /src/foundation/NodeStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/NodeStatics.cpp -------------------------------------------------------------------------------- /src/foundation/NodeStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/NodeStatics.h -------------------------------------------------------------------------------- /src/foundation/ObjectDispatchClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectDispatchClassInfoCache.h -------------------------------------------------------------------------------- /src/foundation/ObjectDispatchInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectDispatchInfo.cpp -------------------------------------------------------------------------------- /src/foundation/ObjectDispatchInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectDispatchInfo.h -------------------------------------------------------------------------------- /src/foundation/ObjectDispatchInfoBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectDispatchInfoBase.cpp -------------------------------------------------------------------------------- /src/foundation/ObjectDispatchInfoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectDispatchInfoBase.h -------------------------------------------------------------------------------- /src/foundation/ObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectFactory.cpp -------------------------------------------------------------------------------- /src/foundation/ObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectFactory.h -------------------------------------------------------------------------------- /src/foundation/ObjectUniqueId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/ObjectUniqueId.cpp -------------------------------------------------------------------------------- /src/foundation/PropertyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyInfo.cpp -------------------------------------------------------------------------------- /src/foundation/PropertyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyInfo.h -------------------------------------------------------------------------------- /src/foundation/PropertyInfoProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyInfoProxy.cpp -------------------------------------------------------------------------------- /src/foundation/PropertyInfoProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyInfoProxy.h -------------------------------------------------------------------------------- /src/foundation/PropertyTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyTypeInfo.cpp -------------------------------------------------------------------------------- /src/foundation/PropertyTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyTypeInfo.h -------------------------------------------------------------------------------- /src/foundation/PropertyValueInternalStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/PropertyValueInternalStatics.h -------------------------------------------------------------------------------- /src/foundation/TypeAdapterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeAdapterFactory.cpp -------------------------------------------------------------------------------- /src/foundation/TypeAdapterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeAdapterFactory.h -------------------------------------------------------------------------------- /src/foundation/TypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfo.cpp -------------------------------------------------------------------------------- /src/foundation/TypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfo.h -------------------------------------------------------------------------------- /src/foundation/TypeInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfoCache.h -------------------------------------------------------------------------------- /src/foundation/TypeInfoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfoFactory.cpp -------------------------------------------------------------------------------- /src/foundation/TypeInfoFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfoFactory.h -------------------------------------------------------------------------------- /src/foundation/TypeInfoStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfoStatics.cpp -------------------------------------------------------------------------------- /src/foundation/TypeInfoStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/TypeInfoStatics.h -------------------------------------------------------------------------------- /src/foundation/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/pch.cpp -------------------------------------------------------------------------------- /src/foundation/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/pch.h -------------------------------------------------------------------------------- /src/foundation/schema/FoundationErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/schema/FoundationErrors.cs -------------------------------------------------------------------------------- /src/foundation/schema/FoundationErrors.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/schema/FoundationErrors.schema -------------------------------------------------------------------------------- /src/foundation/schema/FoundationLoggerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation/schema/FoundationLoggerTypes.cs -------------------------------------------------------------------------------- /src/foundation_library/AsyncOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/AsyncOperation.cpp -------------------------------------------------------------------------------- /src/foundation_library/AsyncOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/AsyncOperation.h -------------------------------------------------------------------------------- /src/foundation_library/BinaryLogListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/BinaryLogListener.cpp -------------------------------------------------------------------------------- /src/foundation_library/BinaryLogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/BinaryLogListener.h -------------------------------------------------------------------------------- /src/foundation_library/BinaryStreamProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/BinaryStreamProvider.h -------------------------------------------------------------------------------- /src/foundation_library/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/EventHandler.h -------------------------------------------------------------------------------- /src/foundation_library/EventSourceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/EventSourceBase.h -------------------------------------------------------------------------------- /src/foundation_library/Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Expression.cpp -------------------------------------------------------------------------------- /src/foundation_library/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Expression.h -------------------------------------------------------------------------------- /src/foundation_library/ExpressionFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ExpressionFactory.cpp -------------------------------------------------------------------------------- /src/foundation_library/ExpressionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ExpressionFactory.h -------------------------------------------------------------------------------- /src/foundation_library/FastContainerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/FastContainerUtil.cpp -------------------------------------------------------------------------------- /src/foundation_library/FastContainerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/FastContainerUtil.h -------------------------------------------------------------------------------- /src/foundation_library/FoundationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/FoundationBase.h -------------------------------------------------------------------------------- /src/foundation_library/JsonStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/JsonStatics.cpp -------------------------------------------------------------------------------- /src/foundation_library/JsonStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/JsonStatics.h -------------------------------------------------------------------------------- /src/foundation_library/LogCategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LogCategory.cpp -------------------------------------------------------------------------------- /src/foundation_library/LogCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LogCategory.h -------------------------------------------------------------------------------- /src/foundation_library/LogRecordStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LogRecordStatics.cpp -------------------------------------------------------------------------------- /src/foundation_library/LogRecordStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LogRecordStatics.h -------------------------------------------------------------------------------- /src/foundation_library/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Logger.cpp -------------------------------------------------------------------------------- /src/foundation_library/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Logger.h -------------------------------------------------------------------------------- /src/foundation_library/LoggerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LoggerFactory.cpp -------------------------------------------------------------------------------- /src/foundation_library/LoggerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LoggerFactory.h -------------------------------------------------------------------------------- /src/foundation_library/LoggerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/LoggerUtil.cpp -------------------------------------------------------------------------------- /src/foundation_library/Mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Mailbox.cpp -------------------------------------------------------------------------------- /src/foundation_library/Mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/Mailbox.h -------------------------------------------------------------------------------- /src/foundation_library/MailboxDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/MailboxDispatcher.cpp -------------------------------------------------------------------------------- /src/foundation_library/MailboxDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/MailboxDispatcher.h -------------------------------------------------------------------------------- /src/foundation_library/ObjectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectBase.cpp -------------------------------------------------------------------------------- /src/foundation_library/ObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectBase.h -------------------------------------------------------------------------------- /src/foundation_library/ObjectBaseFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectBaseFactory.cpp -------------------------------------------------------------------------------- /src/foundation_library/ObjectBaseFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectBaseFactory.h -------------------------------------------------------------------------------- /src/foundation_library/ObjectDispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectDispatch.cpp -------------------------------------------------------------------------------- /src/foundation_library/ObjectDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectDispatch.h -------------------------------------------------------------------------------- /src/foundation_library/ObjectDispatchFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/ObjectDispatchFactory.h -------------------------------------------------------------------------------- /src/foundation_library/TextLogListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/TextLogListener.cpp -------------------------------------------------------------------------------- /src/foundation_library/TextLogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/TextLogListener.h -------------------------------------------------------------------------------- /src/foundation_library/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/pch.cpp -------------------------------------------------------------------------------- /src/foundation_library/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_library/pch.h -------------------------------------------------------------------------------- /src/foundation_pal/ComInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_pal/ComInterfaces.cpp -------------------------------------------------------------------------------- /src/foundation_pal/FoundationExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_pal/FoundationExports.cpp -------------------------------------------------------------------------------- /src/foundation_pal/PropertyValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_pal/PropertyValue.cpp -------------------------------------------------------------------------------- /src/foundation_pal/hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_pal/hstring.cpp -------------------------------------------------------------------------------- /src/foundation_pal/hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/foundation_pal/hstring.h -------------------------------------------------------------------------------- /src/inc/AdapterProxyInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/AdapterProxyInterface.h -------------------------------------------------------------------------------- /src/inc/ArrayHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/ArrayHelper.h -------------------------------------------------------------------------------- /src/inc/CastHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/CastHelper.h -------------------------------------------------------------------------------- /src/inc/CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/CriticalSection.h -------------------------------------------------------------------------------- /src/inc/FoundationTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/FoundationTypes.h -------------------------------------------------------------------------------- /src/inc/FoundationUtilHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/FoundationUtilHelper.h -------------------------------------------------------------------------------- /src/inc/FreeThreadedMarshalerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/FreeThreadedMarshalerBase.h -------------------------------------------------------------------------------- /src/inc/GuidHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/GuidHelper.h -------------------------------------------------------------------------------- /src/inc/PtrSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/PtrSingleton.h -------------------------------------------------------------------------------- /src/inc/SerializeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/SerializeUtil.h -------------------------------------------------------------------------------- /src/inc/auto_delete_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/auto_delete_vector.h -------------------------------------------------------------------------------- /src/inc/palTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/palTimer.h -------------------------------------------------------------------------------- /src/inc/pal_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/inc/pal_str.h -------------------------------------------------------------------------------- /src/jansson/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/Makefile.am -------------------------------------------------------------------------------- /src/jansson/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/dump.c -------------------------------------------------------------------------------- /src/jansson/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/error.c -------------------------------------------------------------------------------- /src/jansson/src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/hashtable.c -------------------------------------------------------------------------------- /src/jansson/src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/hashtable.h -------------------------------------------------------------------------------- /src/jansson/src/hashtable_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/hashtable_seed.c -------------------------------------------------------------------------------- /src/jansson/src/jansson.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/jansson.def -------------------------------------------------------------------------------- /src/jansson/src/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/jansson.h -------------------------------------------------------------------------------- /src/jansson/src/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/jansson_config.h -------------------------------------------------------------------------------- /src/jansson/src/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/jansson_config.h.in -------------------------------------------------------------------------------- /src/jansson/src/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/jansson_private.h -------------------------------------------------------------------------------- /src/jansson/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/load.c -------------------------------------------------------------------------------- /src/jansson/src/lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/lookup3.h -------------------------------------------------------------------------------- /src/jansson/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/memory.c -------------------------------------------------------------------------------- /src/jansson/src/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/pack_unpack.c -------------------------------------------------------------------------------- /src/jansson/src/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/strbuffer.c -------------------------------------------------------------------------------- /src/jansson/src/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/strbuffer.h -------------------------------------------------------------------------------- /src/jansson/src/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/strconv.c -------------------------------------------------------------------------------- /src/jansson/src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/utf.c -------------------------------------------------------------------------------- /src/jansson/src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/utf.h -------------------------------------------------------------------------------- /src/jansson/src/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/jansson/src/value.c -------------------------------------------------------------------------------- /src/java/pmod/jni/AsyncOperationImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/AsyncOperationImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/AsyncOperationImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/AsyncOperationImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/CanExecuteChangedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/CanExecuteChangedEventArgs.h -------------------------------------------------------------------------------- /src/java/pmod/jni/CommandImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/CommandImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/CommandImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/CommandImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/CompletedEventArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/CompletedEventArgs.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/CompletedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/CompletedEventArgs.h -------------------------------------------------------------------------------- /src/java/pmod/jni/Dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/Dictionary.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/Dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/Dispatcher.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/Dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/Dispatcher.h -------------------------------------------------------------------------------- /src/java/pmod/jni/EventModelEventArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/EventModelEventArgs.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/EventModelEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/EventModelEventArgs.h -------------------------------------------------------------------------------- /src/java/pmod/jni/FactoryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/FactoryObject.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/FactoryObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/FactoryObject.h -------------------------------------------------------------------------------- /src/java/pmod/jni/FoundationObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/FoundationObject.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/FoundationObjectImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/FoundationObjectImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/FoundationObjectImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/FoundationObjectImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/InspectableObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/InspectableObject.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/InspectableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/InspectableObject.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JCallbackBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JCallbackBase.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JClass.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JClass.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JObject.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JObject.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JString.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JString.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JVMEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JVMEnv.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JVMEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JVMEnv.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JniActivationFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniActivationFactory.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JniConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniConnection.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JniCoreUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniCoreUtils.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JniCoreUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniCoreUtils.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JniLoadLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniLoadLibrary.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JniUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniUtility.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/JniUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JniUtility.h -------------------------------------------------------------------------------- /src/java/pmod/jni/JsonUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/JsonUtil.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/Logger.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ModelFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ModelFactory.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObjectFactoryImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObjectFactoryImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObjectFactoryImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObjectFactoryImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/ObjectTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObjectTypeInfo.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObjectTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObjectTypeInfo.h -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableCollectionImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableCollectionImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableCollectionImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableCollectionImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableListImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableListImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableListImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableListImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableObjectImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableObjectImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableObjectImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableObjectImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableObjectInfoImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableObjectInfoImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/ObservableObjectInfoImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/ObservableObjectInfoImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyChangedEventArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyChangedEventArgs.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyChangedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyChangedEventArgs.h -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyInfoImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyInfoImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyInfoImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyInfoImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyTypeInfoImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyTypeInfoImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyTypeInfoImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyTypeInfoImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyValueImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyValueImpl.cpp -------------------------------------------------------------------------------- /src/java/pmod/jni/PropertyValueImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/PropertyValueImpl.h -------------------------------------------------------------------------------- /src/java/pmod/jni/genjni.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/java/pmod/jni/genjni.cmd -------------------------------------------------------------------------------- /src/model/CommandClassInfoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/CommandClassInfoCache.cpp -------------------------------------------------------------------------------- /src/model/CommandClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/CommandClassInfoCache.h -------------------------------------------------------------------------------- /src/model/CommandInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/CommandInfo.cpp -------------------------------------------------------------------------------- /src/model/CommandInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/CommandInfo.h -------------------------------------------------------------------------------- /src/model/EventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/EventInfo.cpp -------------------------------------------------------------------------------- /src/model/EventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/EventInfo.h -------------------------------------------------------------------------------- /src/model/ModelInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelInterfaces.cpp -------------------------------------------------------------------------------- /src/model/ModelTypeInfoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelTypeInfoFactory.cpp -------------------------------------------------------------------------------- /src/model/ModelTypeInfoFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelTypeInfoFactory.h -------------------------------------------------------------------------------- /src/model/ModelTypeInfoLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelTypeInfoLibrary.cpp -------------------------------------------------------------------------------- /src/model/ModelTypeInfoStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelTypeInfoStatics.cpp -------------------------------------------------------------------------------- /src/model/ModelTypeInfoStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ModelTypeInfoStatics.h -------------------------------------------------------------------------------- /src/model/ObservableCollectionClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableCollectionClassInfoCache.h -------------------------------------------------------------------------------- /src/model/ObservableCollectionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableCollectionInfo.cpp -------------------------------------------------------------------------------- /src/model/ObservableCollectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableCollectionInfo.h -------------------------------------------------------------------------------- /src/model/ObservableObjectClassInfoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectClassInfoCache.cpp -------------------------------------------------------------------------------- /src/model/ObservableObjectClassInfoCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectClassInfoCache.h -------------------------------------------------------------------------------- /src/model/ObservableObjectInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectInfo.cpp -------------------------------------------------------------------------------- /src/model/ObservableObjectInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectInfo.h -------------------------------------------------------------------------------- /src/model/ObservableObjectInfoBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectInfoBase.cpp -------------------------------------------------------------------------------- /src/model/ObservableObjectInfoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/ObservableObjectInfoBase.h -------------------------------------------------------------------------------- /src/model/PropertyIdContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/PropertyIdContainer.h -------------------------------------------------------------------------------- /src/model/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/pch.cpp -------------------------------------------------------------------------------- /src/model/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/pch.h -------------------------------------------------------------------------------- /src/model/schema/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/Errors.cs -------------------------------------------------------------------------------- /src/model/schema/Errors.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/Errors.schema -------------------------------------------------------------------------------- /src/model/schema/LoggerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/LoggerTypes.cs -------------------------------------------------------------------------------- /src/model/schema/LoggerTypes.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/LoggerTypes.schema -------------------------------------------------------------------------------- /src/model/schema/Perf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/Perf.cs -------------------------------------------------------------------------------- /src/model/schema/Perf.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model/schema/Perf.schema -------------------------------------------------------------------------------- /src/model_library/BaseModelSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/BaseModelSource.cpp -------------------------------------------------------------------------------- /src/model_library/BaseModelSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/BaseModelSource.h -------------------------------------------------------------------------------- /src/model_library/BatchPropertyChangedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/BatchPropertyChangedHelper.h -------------------------------------------------------------------------------- /src/model_library/BindingBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/BindingBase.h -------------------------------------------------------------------------------- /src/model_library/ClassStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ClassStatics.cpp -------------------------------------------------------------------------------- /src/model_library/ClassStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ClassStatics.h -------------------------------------------------------------------------------- /src/model_library/CollectionViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/CollectionViewModel.cpp -------------------------------------------------------------------------------- /src/model_library/CollectionViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/CollectionViewModel.h -------------------------------------------------------------------------------- /src/model_library/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/Command.cpp -------------------------------------------------------------------------------- /src/model_library/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/Command.h -------------------------------------------------------------------------------- /src/model_library/CommandViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/CommandViewModel.cpp -------------------------------------------------------------------------------- /src/model_library/CommandViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/CommandViewModel.h -------------------------------------------------------------------------------- /src/model_library/ExpressionBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ExpressionBinding.cpp -------------------------------------------------------------------------------- /src/model_library/ExpressionBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ExpressionBinding.h -------------------------------------------------------------------------------- /src/model_library/FactoryBindingConverters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/FactoryBindingConverters.cpp -------------------------------------------------------------------------------- /src/model_library/FactoryBindingConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/FactoryBindingConverters.h -------------------------------------------------------------------------------- /src/model_library/FastItemsContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/FastItemsContainer.cpp -------------------------------------------------------------------------------- /src/model_library/FastItemsContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/FastItemsContainer.h -------------------------------------------------------------------------------- /src/model_library/ItemsContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ItemsContainer.h -------------------------------------------------------------------------------- /src/model_library/ModelLibraryInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ModelLibraryInstance.cpp -------------------------------------------------------------------------------- /src/model_library/ModelLibraryInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ModelLibraryInterfaces.cpp -------------------------------------------------------------------------------- /src/model_library/ModelPrivateInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ModelPrivateInterfaces.cpp -------------------------------------------------------------------------------- /src/model_library/ModelSerializerAdapters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ModelSerializerAdapters.cpp -------------------------------------------------------------------------------- /src/model_library/MultiSourceBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/MultiSourceBinding.cpp -------------------------------------------------------------------------------- /src/model_library/MultiSourceBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/MultiSourceBinding.h -------------------------------------------------------------------------------- /src/model_library/MultiSourceModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/MultiSourceModelBase.h -------------------------------------------------------------------------------- /src/model_library/MultiSourceViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/MultiSourceViewModel.cpp -------------------------------------------------------------------------------- /src/model_library/MultiSourceViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/MultiSourceViewModel.h -------------------------------------------------------------------------------- /src/model_library/ObjectNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectNode.h -------------------------------------------------------------------------------- /src/model_library/ObjectStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectStatics.cpp -------------------------------------------------------------------------------- /src/model_library/ObjectStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectStatics.h -------------------------------------------------------------------------------- /src/model_library/ObjectViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectViewModel.cpp -------------------------------------------------------------------------------- /src/model_library/ObjectViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectViewModel.h -------------------------------------------------------------------------------- /src/model_library/ObjectViewModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObjectViewModelBase.h -------------------------------------------------------------------------------- /src/model_library/ObservableCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableCollection.cpp -------------------------------------------------------------------------------- /src/model_library/ObservableCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableCollection.h -------------------------------------------------------------------------------- /src/model_library/ObservableObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableObject.cpp -------------------------------------------------------------------------------- /src/model_library/ObservableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableObject.h -------------------------------------------------------------------------------- /src/model_library/ObservableObjectAdapters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableObjectAdapters.cpp -------------------------------------------------------------------------------- /src/model_library/ObservableObjectStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableObjectStatics.cpp -------------------------------------------------------------------------------- /src/model_library/ObservableObjectStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ObservableObjectStatics.h -------------------------------------------------------------------------------- /src/model_library/PropertyBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/PropertyBinding.cpp -------------------------------------------------------------------------------- /src/model_library/PropertyBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/PropertyBinding.h -------------------------------------------------------------------------------- /src/model_library/ViewModelBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ViewModelBase.h -------------------------------------------------------------------------------- /src/model_library/ViewModelFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ViewModelFactory.cpp -------------------------------------------------------------------------------- /src/model_library/ViewModelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/ViewModelFactory.h -------------------------------------------------------------------------------- /src/model_library/debug/DebugUtilCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/model_library/debug/DebugUtilCommand.cpp -------------------------------------------------------------------------------- /src/nodejs/Addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/Addon.cpp -------------------------------------------------------------------------------- /src/nodejs/AsyncOperationWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/AsyncOperationWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/AsyncOperationWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/AsyncOperationWrap.h -------------------------------------------------------------------------------- /src/nodejs/CommandWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/CommandWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/CommandWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/CommandWrap.h -------------------------------------------------------------------------------- /src/nodejs/DictionaryWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/DictionaryWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/DictionaryWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/DictionaryWrap.h -------------------------------------------------------------------------------- /src/nodejs/DispatcherWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/DispatcherWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/DispatcherWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/DispatcherWrap.h -------------------------------------------------------------------------------- /src/nodejs/InspectableBaseWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/InspectableBaseWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/InspectableBaseWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/InspectableBaseWrap.h -------------------------------------------------------------------------------- /src/nodejs/NodeJsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/NodeJsHelper.cpp -------------------------------------------------------------------------------- /src/nodejs/NodeJsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/NodeJsHelper.h -------------------------------------------------------------------------------- /src/nodejs/ObjectDispatchWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObjectDispatchWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/ObjectDispatchWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObjectDispatchWrap.h -------------------------------------------------------------------------------- /src/nodejs/ObjectWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObjectWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/ObjectWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObjectWrap.h -------------------------------------------------------------------------------- /src/nodejs/ObservableCollectionWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObservableCollectionWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/ObservableCollectionWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObservableCollectionWrap.h -------------------------------------------------------------------------------- /src/nodejs/ObservableObjectWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObservableObjectWrap.cpp -------------------------------------------------------------------------------- /src/nodejs/ObservableObjectWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/ObservableObjectWrap.h -------------------------------------------------------------------------------- /src/nodejs/Statics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/Statics.cpp -------------------------------------------------------------------------------- /src/nodejs/Statics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/Statics.h -------------------------------------------------------------------------------- /src/nodejs/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/pch.cpp -------------------------------------------------------------------------------- /src/nodejs/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/nodejs/pch.h -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODAdapter.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODAdapterUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODAdapterUtil.h -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODAdapterUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODAdapterUtil.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODCollection.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODCommand.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODCommand.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODDictionary.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODDictionary.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODEnumValue.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODEnumValue.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODFoundation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODFoundation.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODGuid.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODGuid.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODInspectable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODInspectable.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODInterop.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODInterop.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODList.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODList.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODLogger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODLogger.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODObjectBase.mm -------------------------------------------------------------------------------- /src/objectivec/PMODAdapter/PMODObjectNode.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/PMODAdapter/PMODObjectNode.mm -------------------------------------------------------------------------------- /src/objectivec/pal/DateTime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/objectivec/pal/DateTime.mm -------------------------------------------------------------------------------- /src/pal/date_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/date_time.cpp -------------------------------------------------------------------------------- /src/pal/pal_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_common.cpp -------------------------------------------------------------------------------- /src/pal/pal_load_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_load_library.cpp -------------------------------------------------------------------------------- /src/pal/pal_trace_printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_trace_printf.cpp -------------------------------------------------------------------------------- /src/pal/pal_wchar16_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_wchar16_t.cpp -------------------------------------------------------------------------------- /src/pal/pal_wchar_t_crt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_wchar_t_crt.cpp -------------------------------------------------------------------------------- /src/pal/pal_wchar_t_nocrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pal_wchar_t_nocrt.cpp -------------------------------------------------------------------------------- /src/pal/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/pch.h -------------------------------------------------------------------------------- /src/pal/std_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/std_thread.cpp -------------------------------------------------------------------------------- /src/pal/unix/palApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/unix/palApi.cpp -------------------------------------------------------------------------------- /src/pal/unix/palApiInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/unix/palApiInternal.cpp -------------------------------------------------------------------------------- /src/pal/unix/palTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/unix/palTimer.cpp -------------------------------------------------------------------------------- /src/pal/win32/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/win32/DateTime.cpp -------------------------------------------------------------------------------- /src/pal/win32/TimerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/win32/TimerService.cpp -------------------------------------------------------------------------------- /src/pal/winrt/TimerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/pal/winrt/TimerService.cpp -------------------------------------------------------------------------------- /src/proxy/AsyncOperationProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/AsyncOperationProxy.cpp -------------------------------------------------------------------------------- /src/proxy/AsyncOperationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/AsyncOperationProxy.h -------------------------------------------------------------------------------- /src/proxy/BaseObjectProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/BaseObjectProxy.cpp -------------------------------------------------------------------------------- /src/proxy/BaseObjectProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/BaseObjectProxy.h -------------------------------------------------------------------------------- /src/proxy/CommandProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/CommandProxy.cpp -------------------------------------------------------------------------------- /src/proxy/CommandProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/CommandProxy.h -------------------------------------------------------------------------------- /src/proxy/ObjectFactoryProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ObjectFactoryProxy.h -------------------------------------------------------------------------------- /src/proxy/ObservableCollectionProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ObservableCollectionProxy.cpp -------------------------------------------------------------------------------- /src/proxy/ObservableCollectionProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ObservableCollectionProxy.h -------------------------------------------------------------------------------- /src/proxy/ObservableObjectProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ObservableObjectProxy.cpp -------------------------------------------------------------------------------- /src/proxy/ObservableObjectProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ObservableObjectProxy.h -------------------------------------------------------------------------------- /src/proxy/ProxyObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ProxyObjectFactory.cpp -------------------------------------------------------------------------------- /src/proxy/ProxyObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ProxyObjectFactory.h -------------------------------------------------------------------------------- /src/proxy/ProxyObjectFactoryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ProxyObjectFactoryFactory.cpp -------------------------------------------------------------------------------- /src/proxy/TBaseModelProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/TBaseModelProxy.h -------------------------------------------------------------------------------- /src/proxy/TBaseObjectProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/TBaseObjectProxy.h -------------------------------------------------------------------------------- /src/proxy/ViewModelProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/ViewModelProxy.h -------------------------------------------------------------------------------- /src/proxy/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/pch.cpp -------------------------------------------------------------------------------- /src/proxy/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/pch.h -------------------------------------------------------------------------------- /src/proxy/schema/ProxyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/schema/ProxyTypes.cs -------------------------------------------------------------------------------- /src/proxy/schema/ProxyTypes.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/schema/ProxyTypes.schema -------------------------------------------------------------------------------- /src/proxy/winrt/Proxy.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/winrt/Proxy.idl -------------------------------------------------------------------------------- /src/proxy/winrt/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/proxy/winrt/dllmain.cpp -------------------------------------------------------------------------------- /src/public/csharp/winrt/DebugUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/csharp/winrt/DebugUtil.cs -------------------------------------------------------------------------------- /src/public/idl/FoundationErrors.g.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/idl/FoundationErrors.g.idl -------------------------------------------------------------------------------- /src/public/idl/Microsoft.PropertyModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/idl/Microsoft.PropertyModel.idl -------------------------------------------------------------------------------- /src/public/idl/ModelErrors.g.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/idl/ModelErrors.g.idl -------------------------------------------------------------------------------- /src/public/idl/ModelPerf.g.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/idl/ModelPerf.g.idl -------------------------------------------------------------------------------- /src/public/inc/foundation/activation_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/activation_factory.h -------------------------------------------------------------------------------- /src/public/inc/foundation/array_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/array_wrapper.h -------------------------------------------------------------------------------- /src/public/inc/foundation/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/assert.h -------------------------------------------------------------------------------- /src/public/inc/foundation/boxing_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/boxing_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/com_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/com_interfaces.h -------------------------------------------------------------------------------- /src/public/inc/foundation/com_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/com_ptr.h -------------------------------------------------------------------------------- /src/public/inc/foundation/ctl/com_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/ctl/com_library.h -------------------------------------------------------------------------------- /src/public/inc/foundation/delegate_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/delegate_library.h -------------------------------------------------------------------------------- /src/public/inc/foundation/dictionary_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/dictionary_ptr.h -------------------------------------------------------------------------------- /src/public/inc/foundation/enum_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/enum_flags.h -------------------------------------------------------------------------------- /src/public/inc/foundation/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/errors.h -------------------------------------------------------------------------------- /src/public/inc/foundation/event_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/event_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/exception.h -------------------------------------------------------------------------------- /src/public/inc/foundation/foundation_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/foundation_api.h -------------------------------------------------------------------------------- /src/public/inc/foundation/foundation_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/foundation_factory.h -------------------------------------------------------------------------------- /src/public/inc/foundation/foundation_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/foundation_macros.h -------------------------------------------------------------------------------- /src/public/inc/foundation/hstring_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/hstring_wrapper.h -------------------------------------------------------------------------------- /src/public/inc/foundation/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/interfaces.h -------------------------------------------------------------------------------- /src/public/inc/foundation/interfaces/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/interfaces/logger.h -------------------------------------------------------------------------------- /src/public/inc/foundation/interfaces/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/interfaces/map.h -------------------------------------------------------------------------------- /src/public/inc/foundation/interfaces/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/interfaces/node.h -------------------------------------------------------------------------------- /src/public/inc/foundation/interfaces/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/interfaces/object.h -------------------------------------------------------------------------------- /src/public/inc/foundation/library/class_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/library/class_base.h -------------------------------------------------------------------------------- /src/public/inc/foundation/library/node_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/library/node_impl.h -------------------------------------------------------------------------------- /src/public/inc/foundation/library/pair_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/library/pair_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/library/type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/library/type_info.h -------------------------------------------------------------------------------- /src/public/inc/foundation/library/util_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/library/util_stl.h -------------------------------------------------------------------------------- /src/public/inc/foundation/logger_type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/logger_type_info.h -------------------------------------------------------------------------------- /src/public/inc/foundation/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/macros.h -------------------------------------------------------------------------------- /src/public/inc/foundation/node_statics_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/node_statics_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/object_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/object_ptr.h -------------------------------------------------------------------------------- /src/public/inc/foundation/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/pal.h -------------------------------------------------------------------------------- /src/public/inc/foundation/pal_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/pal_buffer.h -------------------------------------------------------------------------------- /src/public/inc/foundation/pplxtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/pplxtasks.h -------------------------------------------------------------------------------- /src/public/inc/foundation/pv_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/pv_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/pv_util_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/pv_util_stl.h -------------------------------------------------------------------------------- /src/public/inc/foundation/string_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/string_t.h -------------------------------------------------------------------------------- /src/public/inc/foundation/type_traits_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/type_traits_util.h -------------------------------------------------------------------------------- /src/public/inc/foundation/value_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/value_alloc.h -------------------------------------------------------------------------------- /src/public/inc/foundation/value_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/value_ptr.h -------------------------------------------------------------------------------- /src/public/inc/foundation/weak_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/foundation/weak_reference.h -------------------------------------------------------------------------------- /src/public/inc/pal/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/guiddef.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/critical_section.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/pal_once_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/pal_once_util.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/read_write_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/read_write_lock.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/signal.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/spin_lock.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/thread.h -------------------------------------------------------------------------------- /src/public/inc/pal/library/trace_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/library/trace_util.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_api.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_atomic.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_core.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_critical_section.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_datetime.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_foundation.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_hstring.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_init_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_init_once.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_load_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_load_library.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_semaphore.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_signal.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_std_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_std_thread.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_str.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_thread.h -------------------------------------------------------------------------------- /src/public/inc/pal/pal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pal/pal_types.h -------------------------------------------------------------------------------- /src/public/inc/pmod/binding_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/binding_ptr.h -------------------------------------------------------------------------------- /src/public/inc/pmod/command_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/command_ptr.h -------------------------------------------------------------------------------- /src/public/inc/pmod/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/errors.h -------------------------------------------------------------------------------- /src/public/inc/pmod/event_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/event_connection.h -------------------------------------------------------------------------------- /src/public/inc/pmod/eventhandler_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/eventhandler_util.h -------------------------------------------------------------------------------- /src/public/inc/pmod/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/interfaces.h -------------------------------------------------------------------------------- /src/public/inc/pmod/interfaces/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/interfaces/binding.h -------------------------------------------------------------------------------- /src/public/inc/pmod/interfaces/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/interfaces/command.h -------------------------------------------------------------------------------- /src/public/inc/pmod/interfaces/source_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/interfaces/source_model.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/class_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/class_options.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/command_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/command_impl.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/factory_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/factory_util.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/interfaces.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/library_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/library_util.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/model_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/model_library.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/mtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/mtl.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/object_factory.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/pmod_lib_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/pmod_lib_api.h -------------------------------------------------------------------------------- /src/public/inc/pmod/library/vmtl.h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/library/vmtl.h.h -------------------------------------------------------------------------------- /src/public/inc/pmod/logger_type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/logger_type_info.h -------------------------------------------------------------------------------- /src/public/inc/pmod/object_node_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/object_node_ptr.h -------------------------------------------------------------------------------- /src/public/inc/pmod/observable_object_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/observable_object_ptr.h -------------------------------------------------------------------------------- /src/public/inc/pmod/perf_type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/perf_type_info.h -------------------------------------------------------------------------------- /src/public/inc/pmod/pmod_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/pmod_api.h -------------------------------------------------------------------------------- /src/public/inc/pmod/proxy/proxy_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/proxy/proxy_util.h -------------------------------------------------------------------------------- /src/public/inc/pmod/source_model_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/source_model_ptr.h -------------------------------------------------------------------------------- /src/public/inc/pmod/type_info_declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/pmod/type_info_declare.h -------------------------------------------------------------------------------- /src/public/inc/winrt/Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/winrt/Iterator.h -------------------------------------------------------------------------------- /src/public/inc/winrt/MoCommandAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/winrt/MoCommandAdapterBase.h -------------------------------------------------------------------------------- /src/public/inc/winrt/MoEnumValueAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/winrt/MoEnumValueAdapterBase.h -------------------------------------------------------------------------------- /src/public/inc/winrt/com_activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/inc/winrt/com_activation.h -------------------------------------------------------------------------------- /src/public/objectivec/PMODAdapter/PMODGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/objectivec/PMODAdapter/PMODGuid.h -------------------------------------------------------------------------------- /src/public/objectivec/PMODAdapter/PMODList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/objectivec/PMODAdapter/PMODList.h -------------------------------------------------------------------------------- /src/public/objectivec/PMODAdapter/PMODLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/public/objectivec/PMODAdapter/PMODLogger.h -------------------------------------------------------------------------------- /src/src/FoundationUtilHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/src/FoundationUtilHelper.cpp -------------------------------------------------------------------------------- /src/src/GuidHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/src/GuidHelper.cpp -------------------------------------------------------------------------------- /src/winrt/RuntimeExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/RuntimeExports.cpp -------------------------------------------------------------------------------- /src/winrt/adapter/managed/Dictionary.winrt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/adapter/managed/Dictionary.winrt.cs -------------------------------------------------------------------------------- /src/winrt/adapter/managed/DispatcherAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/adapter/managed/DispatcherAdapter.cs -------------------------------------------------------------------------------- /src/winrt/dll/Microsoft.PropertyModel.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/dll/Microsoft.PropertyModel.def -------------------------------------------------------------------------------- /src/winrt/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/dll/dllmain.cpp -------------------------------------------------------------------------------- /src/winrt/dll/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/dll/dllmain.h -------------------------------------------------------------------------------- /src/winrt/dllLibrary/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/dllLibrary/dllmain.cpp -------------------------------------------------------------------------------- /src/winrt/dllLibrary/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/dllLibrary/dllmain.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoAdapterProxyInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoAdapterProxyInterface.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoAsyncOperationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoAsyncOperationProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCommandProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCommandProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCoreEventHandlerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCoreEventHandlerAdapter.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCoreProxyFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCoreProxyFactory.cpp -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCoreProxyFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCoreProxyFactory.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCoreProxyStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCoreProxyStatics.cpp -------------------------------------------------------------------------------- /src/winrt/moproxy/MoCoreProxyStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoCoreProxyStatics.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoDictionaryProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoDictionaryProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoEnumValueProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoEnumValueProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoEventSourceProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoEventSourceProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoModelProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoModelProxy.h -------------------------------------------------------------------------------- /src/winrt/moproxy/MoObservableObjectProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/moproxy/MoObservableObjectProxy.h -------------------------------------------------------------------------------- /src/winrt/projection/FtmBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/FtmBase.h -------------------------------------------------------------------------------- /src/winrt/projection/MoAsyncOperationAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoAsyncOperationAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoBaseAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoBaseAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoBaseDelegateAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoBaseDelegateAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoBindingBaseAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoBindingBaseAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoCallbackAdapterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCallbackAdapterBase.h -------------------------------------------------------------------------------- /src/winrt/projection/MoCommandAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCommandAdapter.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoCommandAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCommandAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoCommandInfoAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCommandInfoAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoCoreAdapterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCoreAdapterFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoCoreLoggerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCoreLoggerAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoCoreLoggerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCoreLoggerFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoCoreLoggerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoCoreLoggerFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoDictionaryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoDictionaryFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoDispatcherAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoDispatcherAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoDispatcherStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoDispatcherStatics.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoDispatcherStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoDispatcherStatics.h -------------------------------------------------------------------------------- /src/winrt/projection/MoEnumTypeInfoAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoEnumTypeInfoAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoEnumValueAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoEnumValueAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoEnumValueInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoEnumValueInterop.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoEnumValueInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoEnumValueInterop.h -------------------------------------------------------------------------------- /src/winrt/projection/MoEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoEventHandler.h -------------------------------------------------------------------------------- /src/winrt/projection/MoExpressionAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoExpressionAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoExpressionFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoExpressionFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoExpressionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoExpressionFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoJsonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoJsonUtils.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoJsonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoJsonUtils.h -------------------------------------------------------------------------------- /src/winrt/projection/MoKeyValuePairAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoKeyValuePairAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoLogParameterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoLogParameterFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoLogParameterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoLogParameterFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoLogRecordFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoLogRecordFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoLogRecordFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoLogRecordFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoModelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoModelFactoryAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelFactoryAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoModelModelFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelModelFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoModelModelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelModelFactory.h -------------------------------------------------------------------------------- /src/winrt/projection/MoModelTypeInfoAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelTypeInfoAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoModelTypeInfoStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoModelTypeInfoStatics.h -------------------------------------------------------------------------------- /src/winrt/projection/MoObjectAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoObjectAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoObjectDispatchAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoObjectDispatchAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoObjectNodeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoObjectNodeAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoObservableVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoObservableVector.h -------------------------------------------------------------------------------- /src/winrt/projection/MoSourceModelAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoSourceModelAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoStreamProviderAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoStreamProviderAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/MoXamlCommandAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoXamlCommandAdapter.cpp -------------------------------------------------------------------------------- /src/winrt/projection/MoXamlCommandAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/MoXamlCommandAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection/VectorChangedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/VectorChangedEventArgs.h -------------------------------------------------------------------------------- /src/winrt/projection/VectorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/VectorView.cpp -------------------------------------------------------------------------------- /src/winrt/projection/VectorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/VectorView.h -------------------------------------------------------------------------------- /src/winrt/projection/comModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/comModule.cpp -------------------------------------------------------------------------------- /src/winrt/projection/comModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection/comModule.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoClassStatics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoClassStatics.cpp -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoClassStatics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoClassStatics.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoCommandFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoCommandFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoCommandFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoCommandFactory.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoLibraryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoLibraryFactory.cpp -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoViewModel.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoViewModelAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoViewModelAdapter.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/MoViewModelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/MoViewModelFactory.h -------------------------------------------------------------------------------- /src/winrt/projection_lib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/pch.cpp -------------------------------------------------------------------------------- /src/winrt/projection_lib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/src/winrt/projection_lib/pch.h -------------------------------------------------------------------------------- /tests/__build/AndroidStudio/PMODTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tests/__build/AndroidStudio/PMODTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/AndroidStudio/PMODTest/gradlew -------------------------------------------------------------------------------- /tests/__build/AndroidStudio/PMODTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tests/__build/IntelliJ/pmod_test/pmod_test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/IntelliJ/pmod_test/pmod_test.iml -------------------------------------------------------------------------------- /tests/__build/Xcode/pmod.test/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/Xcode/pmod.test/Tests/Info.plist -------------------------------------------------------------------------------- /tests/__build/vs/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/vs/Directory.Build.props -------------------------------------------------------------------------------- /tests/__build/vs/SchemaStub/SchemaStub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/vs/SchemaStub/SchemaStub.csproj -------------------------------------------------------------------------------- /tests/__build/vs/pmod.tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/vs/pmod.tests.sln -------------------------------------------------------------------------------- /tests/__build/vs/uwp/TestModel.dll/TestModel.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllGetActivationFactory PRIVATE 3 | -------------------------------------------------------------------------------- /tests/__build/vs/uwp/TestModel.dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/vs/uwp/TestModel.dll/dllmain.cpp -------------------------------------------------------------------------------- /tests/__build/vs/uwp/uwp.cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/__build/vs/uwp/uwp.cpp.props -------------------------------------------------------------------------------- /tests/src/schemas/CommandTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/CommandTypes.cs -------------------------------------------------------------------------------- /tests/src/schemas/EnumTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/EnumTypes.cs -------------------------------------------------------------------------------- /tests/src/schemas/MethodSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/MethodSupport.cs -------------------------------------------------------------------------------- /tests/src/schemas/StructTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/StructTypes.cs -------------------------------------------------------------------------------- /tests/src/schemas/TestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/TestFactory.cs -------------------------------------------------------------------------------- /tests/src/schemas/TypeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/TypeProperties.cs -------------------------------------------------------------------------------- /tests/src/schemas/test_model.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/test_model.schema -------------------------------------------------------------------------------- /tests/src/schemas/test_model_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/schemas/test_model_attributes.json -------------------------------------------------------------------------------- /tests/src/src/cpp/TestModelRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/TestModelRegister.cpp -------------------------------------------------------------------------------- /tests/src/src/cpp/TestModelRegisterIf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/TestModelRegisterIf.cpp -------------------------------------------------------------------------------- /tests/src/src/cpp/test_factory/TestFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/test_factory/TestFactory.cpp -------------------------------------------------------------------------------- /tests/src/src/cpp/test_harness/TestRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/test_harness/TestRunner.cpp -------------------------------------------------------------------------------- /tests/src/src/cpp/test_harness/UnitTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/test_harness/UnitTestBase.h -------------------------------------------------------------------------------- /tests/src/src/cpp/test_harness/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/test_harness/pch.cpp -------------------------------------------------------------------------------- /tests/src/src/cpp/test_harness/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/cpp/test_harness/pch.h -------------------------------------------------------------------------------- /tests/src/src/managed/shared/DictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/managed/shared/DictionaryTest.cs -------------------------------------------------------------------------------- /tests/src/src/managed/uwp/ActivateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/managed/uwp/ActivateHelper.cs -------------------------------------------------------------------------------- /tests/src/src/managed/uwp/ProxyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/managed/uwp/ProxyTest.cs -------------------------------------------------------------------------------- /tests/src/src/nodejs/dictionaryTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/nodejs/dictionaryTest.js -------------------------------------------------------------------------------- /tests/src/src/nodejs/observableObjectTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/nodejs/observableObjectTest.js -------------------------------------------------------------------------------- /tests/src/src/objectivec/PMODDictionaryTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/objectivec/PMODDictionaryTest.m -------------------------------------------------------------------------------- /tests/src/src/objectivec/RunTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/pmod/HEAD/tests/src/src/objectivec/RunTests.mm --------------------------------------------------------------------------------