├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── clean.sh ├── gen-cs ├── AppCsInterface.hx ├── cs │ ├── Bind │ │ └── Support.cs │ └── Sample │ │ └── Bind_AppCsInterface.cs └── linc │ ├── linc_AppCsInterface.cpp │ ├── linc_AppCsInterface.h │ └── linc_AppCsInterface.xml ├── haxelib.json ├── nodejs.hxml ├── package.json ├── run.hxml ├── run.n ├── sample ├── android │ ├── .idea │ │ ├── android.iml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── .vscode │ │ └── settings.json │ ├── bind-java.bat │ ├── bind-java.sh │ ├── build.bat │ ├── build.hxml │ ├── build.sh │ ├── compile-android.bat │ ├── compile-android.sh │ ├── ndk-stack.sh │ ├── project.android │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── compiler.xml │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── gradle.xml │ │ │ ├── inspectionProfiles │ │ │ │ ├── Project_Default.xml │ │ │ │ └── profiles_settings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ ├── org │ │ │ │ │ └── haxe │ │ │ │ │ │ └── HXCPP.java │ │ │ │ └── yourcompany │ │ │ │ │ └── androidsample │ │ │ │ │ ├── AppAndroidInterface.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── src │ │ ├── Main.hx │ │ ├── android │ │ ├── AppAndroidInterface.hx │ │ └── linc │ │ │ ├── linc_AppAndroidInterface.cpp │ │ │ ├── linc_AppAndroidInterface.h │ │ │ └── linc_AppAndroidInterface.xml │ │ ├── import.hx │ │ └── java │ │ ├── bind │ │ └── Support.java │ │ └── yourcompany │ │ └── androidsample │ │ └── bind_AppAndroidInterface.java ├── cs │ └── AppCsInterface.cs └── ios │ ├── bind-objc.sh │ ├── build.hxml │ ├── build.sh │ ├── compile-ios.sh │ ├── project.ios │ ├── IosSample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── IosSample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── AppNativeInterface.h │ │ ├── AppNativeInterface.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── IosSampleSwift │ │ ├── AppSwiftInterface.swift │ │ ├── Info.plist │ │ └── IosSampleSwift.h │ └── src │ ├── Main.hx │ ├── import.hx │ └── ios │ ├── AppNativeInterface.hx │ ├── AppSwiftInterface.hx │ └── linc │ ├── linc_AppNativeInterface.h │ ├── linc_AppNativeInterface.mm │ ├── linc_AppNativeInterface.xml │ ├── linc_AppSwiftInterface.h │ ├── linc_AppSwiftInterface.mm │ ├── linc_AppSwiftInterface.xml │ ├── objc_AppNativeInterface.h │ └── objc_IosSampleSwift-Swift.h ├── src └── bindhx │ ├── Class.hx │ ├── Cli.hx │ ├── File.hx │ ├── Json.hx │ ├── Linc.hx │ ├── Main.hx │ ├── Run.hx │ ├── cs │ ├── Bind.hx │ ├── Parse.hx │ ├── Support.hx │ └── linc │ │ ├── linc_CS.cpp │ │ ├── linc_CS.h │ │ └── linc_CS.xml │ ├── java │ ├── Bind.hx │ ├── Parse.hx │ ├── Support.hx │ └── linc │ │ ├── linc_JNI.cpp │ │ ├── linc_JNI.h │ │ └── linc_JNI.xml │ └── objc │ ├── Bind.hx │ ├── Parse.hx │ ├── Support.hx │ └── linc │ ├── linc_Objc.h │ ├── linc_Objc.mm │ └── linc_Objc.xml ├── support ├── cs │ └── Bind │ │ └── Support.cs └── java │ └── bind │ └── Support.java ├── test-cs.sh ├── test-java.sh └── test-objc.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/clean.sh -------------------------------------------------------------------------------- /gen-cs/AppCsInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/AppCsInterface.hx -------------------------------------------------------------------------------- /gen-cs/cs/Bind/Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/cs/Bind/Support.cs -------------------------------------------------------------------------------- /gen-cs/cs/Sample/Bind_AppCsInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/cs/Sample/Bind_AppCsInterface.cs -------------------------------------------------------------------------------- /gen-cs/linc/linc_AppCsInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/linc/linc_AppCsInterface.cpp -------------------------------------------------------------------------------- /gen-cs/linc/linc_AppCsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/linc/linc_AppCsInterface.h -------------------------------------------------------------------------------- /gen-cs/linc/linc_AppCsInterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/gen-cs/linc/linc_AppCsInterface.xml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/haxelib.json -------------------------------------------------------------------------------- /nodejs.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/nodejs.hxml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/package.json -------------------------------------------------------------------------------- /run.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main bindhx.Run 3 | -neko run.n 4 | -------------------------------------------------------------------------------- /run.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/run.n -------------------------------------------------------------------------------- /sample/android/.idea/android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/android.iml -------------------------------------------------------------------------------- /sample/android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/compiler.xml -------------------------------------------------------------------------------- /sample/android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /sample/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/misc.xml -------------------------------------------------------------------------------- /sample/android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/modules.xml -------------------------------------------------------------------------------- /sample/android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.idea/workspace.xml -------------------------------------------------------------------------------- /sample/android/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/.vscode/settings.json -------------------------------------------------------------------------------- /sample/android/bind-java.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/bind-java.bat -------------------------------------------------------------------------------- /sample/android/bind-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/bind-java.sh -------------------------------------------------------------------------------- /sample/android/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/build.bat -------------------------------------------------------------------------------- /sample/android/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/build.hxml -------------------------------------------------------------------------------- /sample/android/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/build.sh -------------------------------------------------------------------------------- /sample/android/compile-android.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/compile-android.bat -------------------------------------------------------------------------------- /sample/android/compile-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/compile-android.sh -------------------------------------------------------------------------------- /sample/android/ndk-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/ndk-stack.sh -------------------------------------------------------------------------------- /sample/android/project.android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.gitignore -------------------------------------------------------------------------------- /sample/android/project.android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/compiler.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/gradle.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/misc.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/modules.xml -------------------------------------------------------------------------------- /sample/android/project.android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /sample/android/project.android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/android/project.android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/build.gradle -------------------------------------------------------------------------------- /sample/android/project.android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/proguard-rules.pro -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/java/org/haxe/HXCPP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/java/org/haxe/HXCPP.java -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/java/yourcompany/androidsample/AppAndroidInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/java/yourcompany/androidsample/AppAndroidInterface.java -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/java/yourcompany/androidsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/java/yourcompany/androidsample/MainActivity.java -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/android/project.android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/android/project.android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/build.gradle -------------------------------------------------------------------------------- /sample/android/project.android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/gradle.properties -------------------------------------------------------------------------------- /sample/android/project.android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /sample/android/project.android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sample/android/project.android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/gradlew -------------------------------------------------------------------------------- /sample/android/project.android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/project.android/gradlew.bat -------------------------------------------------------------------------------- /sample/android/project.android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /sample/android/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/Main.hx -------------------------------------------------------------------------------- /sample/android/src/android/AppAndroidInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/android/AppAndroidInterface.hx -------------------------------------------------------------------------------- /sample/android/src/android/linc/linc_AppAndroidInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/android/linc/linc_AppAndroidInterface.cpp -------------------------------------------------------------------------------- /sample/android/src/android/linc/linc_AppAndroidInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/android/linc/linc_AppAndroidInterface.h -------------------------------------------------------------------------------- /sample/android/src/android/linc/linc_AppAndroidInterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/android/linc/linc_AppAndroidInterface.xml -------------------------------------------------------------------------------- /sample/android/src/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/import.hx -------------------------------------------------------------------------------- /sample/android/src/java/bind/Support.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/java/bind/Support.java -------------------------------------------------------------------------------- /sample/android/src/java/yourcompany/androidsample/bind_AppAndroidInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/android/src/java/yourcompany/androidsample/bind_AppAndroidInterface.java -------------------------------------------------------------------------------- /sample/cs/AppCsInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/cs/AppCsInterface.cs -------------------------------------------------------------------------------- /sample/ios/bind-objc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/bind-objc.sh -------------------------------------------------------------------------------- /sample/ios/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/build.hxml -------------------------------------------------------------------------------- /sample/ios/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/build.sh -------------------------------------------------------------------------------- /sample/ios/compile-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/compile-ios.sh -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/AppDelegate.h -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/AppDelegate.m -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/AppNativeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/AppNativeInterface.h -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/AppNativeInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/AppNativeInterface.m -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/Info.plist -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/ViewController.h -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/ViewController.m -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSample/main.m -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSampleSwift/AppSwiftInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSampleSwift/AppSwiftInterface.swift -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSampleSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSampleSwift/Info.plist -------------------------------------------------------------------------------- /sample/ios/project.ios/IosSampleSwift/IosSampleSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/project.ios/IosSampleSwift/IosSampleSwift.h -------------------------------------------------------------------------------- /sample/ios/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/Main.hx -------------------------------------------------------------------------------- /sample/ios/src/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/import.hx -------------------------------------------------------------------------------- /sample/ios/src/ios/AppNativeInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/AppNativeInterface.hx -------------------------------------------------------------------------------- /sample/ios/src/ios/AppSwiftInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/AppSwiftInterface.hx -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppNativeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppNativeInterface.h -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppNativeInterface.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppNativeInterface.mm -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppNativeInterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppNativeInterface.xml -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppSwiftInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppSwiftInterface.h -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppSwiftInterface.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppSwiftInterface.mm -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/linc_AppSwiftInterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/linc_AppSwiftInterface.xml -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/objc_AppNativeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/objc_AppNativeInterface.h -------------------------------------------------------------------------------- /sample/ios/src/ios/linc/objc_IosSampleSwift-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/sample/ios/src/ios/linc/objc_IosSampleSwift-Swift.h -------------------------------------------------------------------------------- /src/bindhx/Class.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Class.hx -------------------------------------------------------------------------------- /src/bindhx/Cli.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Cli.hx -------------------------------------------------------------------------------- /src/bindhx/File.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/File.hx -------------------------------------------------------------------------------- /src/bindhx/Json.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Json.hx -------------------------------------------------------------------------------- /src/bindhx/Linc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Linc.hx -------------------------------------------------------------------------------- /src/bindhx/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Main.hx -------------------------------------------------------------------------------- /src/bindhx/Run.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/Run.hx -------------------------------------------------------------------------------- /src/bindhx/cs/Bind.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/Bind.hx -------------------------------------------------------------------------------- /src/bindhx/cs/Parse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/Parse.hx -------------------------------------------------------------------------------- /src/bindhx/cs/Support.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/Support.hx -------------------------------------------------------------------------------- /src/bindhx/cs/linc/linc_CS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/linc/linc_CS.cpp -------------------------------------------------------------------------------- /src/bindhx/cs/linc/linc_CS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/linc/linc_CS.h -------------------------------------------------------------------------------- /src/bindhx/cs/linc/linc_CS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/cs/linc/linc_CS.xml -------------------------------------------------------------------------------- /src/bindhx/java/Bind.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/Bind.hx -------------------------------------------------------------------------------- /src/bindhx/java/Parse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/Parse.hx -------------------------------------------------------------------------------- /src/bindhx/java/Support.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/Support.hx -------------------------------------------------------------------------------- /src/bindhx/java/linc/linc_JNI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/linc/linc_JNI.cpp -------------------------------------------------------------------------------- /src/bindhx/java/linc/linc_JNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/linc/linc_JNI.h -------------------------------------------------------------------------------- /src/bindhx/java/linc/linc_JNI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/java/linc/linc_JNI.xml -------------------------------------------------------------------------------- /src/bindhx/objc/Bind.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/Bind.hx -------------------------------------------------------------------------------- /src/bindhx/objc/Parse.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/Parse.hx -------------------------------------------------------------------------------- /src/bindhx/objc/Support.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/Support.hx -------------------------------------------------------------------------------- /src/bindhx/objc/linc/linc_Objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/linc/linc_Objc.h -------------------------------------------------------------------------------- /src/bindhx/objc/linc/linc_Objc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/linc/linc_Objc.mm -------------------------------------------------------------------------------- /src/bindhx/objc/linc/linc_Objc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/src/bindhx/objc/linc/linc_Objc.xml -------------------------------------------------------------------------------- /support/cs/Bind/Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/support/cs/Bind/Support.cs -------------------------------------------------------------------------------- /support/java/bind/Support.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/support/java/bind/Support.java -------------------------------------------------------------------------------- /test-cs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/test-cs.sh -------------------------------------------------------------------------------- /test-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/test-java.sh -------------------------------------------------------------------------------- /test-objc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyfa/bind/HEAD/test-objc.sh --------------------------------------------------------------------------------