├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── archive-lib ├── examples ├── ARC │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Example-ARC.sln │ ├── Example-ARC.vcxproj │ ├── Example-ARC.vcxproj.filters │ ├── Example-ARC.xcodeproj │ │ └── project.pbxproj │ ├── cmake-debug.sh │ ├── cmake-release.sh │ └── main.cpp ├── Android │ ├── JNI │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── slib │ │ │ │ │ └── examplejni │ │ │ │ │ └── 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 │ └── PhoneCall │ │ ├── project │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── slib │ │ │ │ │ └── examples │ │ │ │ │ └── phonecall │ │ │ │ │ ├── CallService.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ ├── .gitignore │ │ ├── cpp │ │ ├── MainPage.cpp │ │ ├── MainPage.h │ │ ├── app.cpp │ │ └── app.h │ │ └── sapp │ │ ├── .sapp.conf │ │ ├── global │ │ ├── colors.xml │ │ ├── include.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── units.xml │ │ ├── sapp.xml │ │ └── ui │ │ └── MainPage.xml ├── Containers │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Example-Container.sln │ ├── Example-Container.vcxproj │ ├── Example-Container.vcxproj.filters │ ├── Example-Container.xcodeproj │ │ └── project.pbxproj │ ├── cmake-debug.sh │ ├── cmake-release.sh │ └── main.cpp ├── Crypt │ ├── 3DES │ │ ├── .gitignore │ │ ├── Example3DES.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.cpp │ └── AES │ │ ├── .gitignore │ │ ├── ExampleAES.xcodeproj │ │ └── project.pbxproj │ │ └── main.cpp ├── Database │ ├── MySQL │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ └── MySQL_Example.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── main.cpp │ ├── PostgreSQL │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ └── ExamplePostgreSQL.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── main.cpp │ ├── Redis │ │ ├── Linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake-debug.sh │ │ │ └── cmake-release.sh │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ └── RedisClientExample.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── main.cpp │ └── SQLite │ │ ├── .gitignore │ │ ├── ExampleSQLite.xcodeproj │ │ └── project.pbxproj │ │ └── main.cpp ├── Device │ ├── Contact │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── slib │ │ │ │ │ │ └── example │ │ │ │ │ │ └── contact │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── ExampleContact.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── cpp │ │ │ ├── MainPage.cpp │ │ │ ├── MainPage.h │ │ │ ├── app.cpp │ │ │ └── app.h │ │ │ └── sapp │ │ │ ├── .sapp.conf │ │ │ ├── global │ │ │ ├── colors.xml │ │ │ ├── include.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── units.xml │ │ │ ├── sapp.xml │ │ │ └── ui │ │ │ └── MainPage.xml │ └── Sensor │ │ ├── Android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── slib │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ ├── iOS │ │ ├── .gitignore │ │ ├── ExampleSensor.xcodeproj │ │ │ └── project.pbxproj │ │ └── project │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.mm │ │ └── src │ │ ├── app.cpp │ │ └── app.h ├── Network │ ├── HttpServer │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Example-HttpServer.sln │ │ ├── Example-HttpServer.vcxproj │ │ ├── Example-HttpServer.vcxproj.filters │ │ ├── Example-HttpServer.xcodeproj │ │ │ └── project.pbxproj │ │ ├── cmake-debug.sh │ │ ├── cmake-release.sh │ │ ├── main.cpp │ │ └── slib_http.conf │ ├── Ping │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Example-Ping.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ExamplePing.sln │ │ ├── ExamplePing.vcxproj │ │ ├── ExamplePing.vcxproj.filters │ │ ├── cmake-debug.sh │ │ ├── cmake-release.sh │ │ └── main.cpp │ ├── StunServer │ │ ├── .gitignore │ │ ├── Example-StunServer.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.cpp │ └── UdpHolepuching │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Example-UdpHolepunching.xcodeproj │ │ └── project.pbxproj │ │ ├── cmake-debug.sh │ │ ├── cmake-release.sh │ │ └── main.cpp ├── PushNotification │ ├── FCM │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── slib │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fcm │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── ExampleFCM.entitlements │ │ │ ├── ExampleFCM.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── ExampleFCM.xcscheme │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ └── config.h │ └── XgPush │ │ ├── Android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── slib │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ ├── iOS │ │ ├── .gitignore │ │ ├── ExampleXgPush.entitlements │ │ ├── ExampleXgPush.xcodeproj │ │ │ └── project.pbxproj │ │ └── project │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.mm │ │ └── src │ │ ├── app.cpp │ │ └── app.h ├── Social │ ├── Alipay │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── joycore │ │ │ │ │ │ └── schuker │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── ExampleAlipay.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── ExampleAlipay.xcscheme │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── cpp │ │ │ ├── MainPage.cpp │ │ │ ├── MainPage.h │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ └── config.h │ │ │ └── sapp │ │ │ ├── .sapp.conf │ │ │ ├── global │ │ │ ├── colors.xml │ │ │ ├── include.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── units.xml │ │ │ ├── sapp.xml │ │ │ └── ui │ │ │ └── MainPage.xml │ ├── OAuth │ │ ├── Client │ │ │ ├── Win32 │ │ │ │ ├── .gitignore │ │ │ │ ├── OAuthClient.sln │ │ │ │ ├── OAuthClient.vcxproj │ │ │ │ ├── OAuthClient.vcxproj.filters │ │ │ │ └── main.cpp │ │ │ ├── macOS │ │ │ │ ├── .gitignore │ │ │ │ ├── OAuthClient.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── project │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.mm │ │ │ └── src │ │ │ │ ├── .gitignore │ │ │ │ ├── cpp │ │ │ │ ├── MainWindow.cpp │ │ │ │ ├── MainWindow.h │ │ │ │ ├── app.cpp │ │ │ │ └── app.h │ │ │ │ └── sapp │ │ │ │ ├── .sapp.conf │ │ │ │ ├── global │ │ │ │ ├── colors.xml │ │ │ │ ├── include.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── styles.xml │ │ │ │ └── units.xml │ │ │ │ ├── sapp.xml │ │ │ │ └── ui │ │ │ │ └── MainWindow.xml │ │ └── Server │ │ │ ├── .gitignore │ │ │ ├── OAuthServer.sln │ │ │ ├── OAuthServer.vcxproj │ │ │ ├── OAuthServer.vcxproj.filters │ │ │ ├── OAuthServer.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── main.cpp │ └── Wechat │ │ ├── Android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── joycore │ │ │ │ │ └── schuker │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── wxapi │ │ │ │ │ ├── WXEntryActivity.java │ │ │ │ │ └── WXPayEntryActivity.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ ├── iOS │ │ ├── .gitignore │ │ ├── ExampleWechat.xcodeproj │ │ │ └── project.pbxproj │ │ └── project │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.mm │ │ └── src │ │ ├── .gitignore │ │ ├── cpp │ │ ├── MainPage.cpp │ │ ├── MainPage.h │ │ ├── PayPage.cpp │ │ ├── PayPage.h │ │ ├── app.cpp │ │ ├── app.h │ │ └── config.h │ │ └── sapp │ │ ├── .sapp.conf │ │ ├── global │ │ ├── colors.xml │ │ ├── include.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── units.xml │ │ ├── sapp.xml │ │ └── ui │ │ ├── MainPage.xml │ │ └── PayPage.xml ├── UI │ ├── CameraView │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── slib │ │ │ │ │ │ └── examplecameraview │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── Win32 │ │ │ ├── .gitignore │ │ │ ├── Example-CameraView.sln │ │ │ ├── Example-CameraView.vcxproj │ │ │ ├── Example-CameraView.vcxproj.filters │ │ │ └── main.cpp │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── Example-CameraView.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ExampleCameraView │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.mm │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── Example-CameraView.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── ExampleCameraView │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── app.cpp │ │ │ └── app.h │ ├── ChromiumView (sapp) │ │ ├── .gitignore │ │ ├── Win32 │ │ │ ├── .gitignore │ │ │ ├── ExampleChromiumView.sln │ │ │ ├── ExampleChromiumView.vcxproj │ │ │ ├── ExampleChromiumView.vcxproj.filters │ │ │ └── main.cpp │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── ExampleChromiumView (sapp).xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── helper │ │ │ │ ├── .gitignore │ │ │ │ ├── ExampleChromiumViewHelper.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── project │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.mm │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ ├── sapp │ │ │ ├── sapp.xml │ │ │ └── ui │ │ │ │ └── MainWindow.xml │ │ └── src │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ ├── main_window.cpp │ │ │ └── main_window.h │ ├── ChromiumView │ │ ├── Win32 │ │ │ ├── .gitignore │ │ │ ├── ExampleChromiumView.sln │ │ │ ├── ExampleChromiumView.vcxproj │ │ │ ├── ExampleChromiumView.vcxproj.filters │ │ │ └── main.cpp │ │ ├── asset │ │ │ └── web │ │ │ │ ├── index.html │ │ │ │ └── slib_icon.png │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── ExampleChromiumView.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── helper │ │ │ │ ├── .gitignore │ │ │ │ ├── ExampleChromiumViewHelper.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── project │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.mm │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── app.cpp │ │ │ └── app.h │ ├── DragAndDrop │ │ ├── Win32 │ │ │ ├── .gitignore │ │ │ ├── DragAndDrop.sln │ │ │ ├── DragAndDrop.vcxproj │ │ │ ├── DragAndDrop.vcxproj.filters │ │ │ └── main.cpp │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── DragAndDrop.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── cpp │ │ │ ├── MainWindow.cpp │ │ │ ├── MainWindow.h │ │ │ ├── app.cpp │ │ │ └── app.h │ │ │ └── sapp │ │ │ ├── .sapp.conf │ │ │ ├── global │ │ │ ├── colors.xml │ │ │ ├── include.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── units.xml │ │ │ ├── image │ │ │ └── button.png │ │ │ ├── sapp.xml │ │ │ └── ui │ │ │ └── MainWindow.xml │ ├── FFmpegPlayer │ │ ├── .gitignore │ │ ├── macOS │ │ │ ├── FFmpegPlayer.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ └── src │ │ │ ├── app.cpp │ │ │ └── app.h │ ├── ImageView │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── images │ │ │ │ │ │ └── slib.png │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── slib │ │ │ │ │ │ └── exampleimageview │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── Linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake-debug.sh │ │ │ ├── cmake-release.sh │ │ │ └── main.cpp │ │ ├── Win32 │ │ │ ├── .gitignore │ │ │ ├── ExampleImageView.sln │ │ │ ├── ExampleImageView.vcxproj │ │ │ ├── ExampleImageView.vcxproj.filters │ │ │ └── main.cpp │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── ExampleImageView.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ ├── images │ │ │ └── slib.png │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── ExampleImageView.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.cpp │ │ └── src │ │ │ ├── app.cpp │ │ │ └── app.h │ ├── QRCode │ │ ├── Android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── cpp │ │ │ │ │ └── native-lib.cpp │ │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── slib │ │ │ │ │ │ └── qrcodeexample │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ ├── iOS │ │ │ ├── .gitignore │ │ │ ├── QRCodeExample.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── main.mm │ │ ├── macOS │ │ │ ├── .gitignore │ │ │ ├── QRCodeExample.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── project │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ └── main.cpp │ │ └── src │ │ │ ├── app.cpp │ │ │ └── app.h │ └── WebView │ │ ├── Android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── slib │ │ │ │ │ └── examplewebview │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ │ │ └── xml │ │ │ │ ├── file_paths.xml │ │ │ │ └── network_security_config.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ ├── Win32 │ │ ├── .gitignore │ │ ├── ExampleWebView.sln │ │ ├── ExampleWebView.vcxproj │ │ ├── ExampleWebView.vcxproj.filters │ │ └── main.cpp │ │ ├── asset │ │ └── web │ │ │ ├── index.html │ │ │ └── slib_icon.png │ │ ├── iOS │ │ ├── .gitignore │ │ ├── ExampleWebView.xcodeproj │ │ │ └── project.pbxproj │ │ └── project │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.mm │ │ ├── macOS │ │ ├── .gitignore │ │ ├── Example-WebView.xcodeproj │ │ │ └── project.pbxproj │ │ └── Example-WebView │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ └── main.mm │ │ └── src │ │ ├── app.cpp │ │ └── app.h └── sapp │ ├── Android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ └── native-lib.cpp │ │ │ ├── java │ │ │ └── io │ │ │ │ └── slib │ │ │ │ └── SAppExample │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── 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 │ ├── iOS │ ├── .gitignore │ ├── SAppExample.xcodeproj │ │ └── project.pbxproj │ └── project │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.mm │ └── src │ ├── .gitignore │ ├── cpp │ ├── CameraViewPage.cpp │ ├── CameraViewPage.h │ ├── ControlScreenPage.cpp │ ├── ControlScreenPage.h │ ├── LaunchScreen.cpp │ ├── LaunchScreen.h │ ├── ListViewPage.cpp │ ├── ListViewPage.h │ ├── MainMenu.cpp │ ├── MainMenu.h │ ├── QRCodeScannerPage.cpp │ ├── QRCodeScannerPage.h │ ├── app.cpp │ └── app.h │ └── sapp │ ├── .sapp.conf │ ├── global │ ├── colors.xml │ ├── include.xml │ ├── strings.xml │ ├── strings_ko.xml │ ├── strings_zh-Hant.xml │ ├── strings_zh.xml │ └── styles.xml │ ├── image-ko │ └── lion.png │ ├── image-zh-Hant │ └── lion.png │ ├── image-zh │ └── lion.png │ ├── image │ ├── back.png │ ├── background.png │ ├── lion.png │ ├── loading.gif │ ├── slib_icon.png │ └── tiger.png │ ├── sapp.xml │ └── ui │ ├── CameraViewPage.xml │ ├── CameraViewTakePicturePage.xml │ ├── ControlScreen.xml │ ├── Drawer.xml │ ├── HelloWorld.xml │ ├── IncludeLayout.xml │ ├── LaunchScreen.xml │ ├── ListView.xml │ ├── ListViewItem.xml │ ├── LoginPage.xml │ ├── MainMenu.xml │ ├── QRCodeScanner.xml │ ├── VideoView.xml │ ├── ViewPager.xml │ └── WebView.xml ├── external ├── external.txt ├── include │ ├── FacebookSDK │ │ └── iOS │ │ │ ├── FBSDKCoreKit │ │ │ ├── FBSDKAccessToken.h │ │ │ ├── FBSDKAppEvents.h │ │ │ ├── FBSDKAppLink.h │ │ │ ├── FBSDKAppLinkNavigation.h │ │ │ ├── FBSDKAppLinkResolver.h │ │ │ ├── FBSDKAppLinkResolving.h │ │ │ ├── FBSDKAppLinkReturnToRefererController.h │ │ │ ├── FBSDKAppLinkReturnToRefererView.h │ │ │ ├── FBSDKAppLinkTarget.h │ │ │ ├── FBSDKAppLinkUtility.h │ │ │ ├── FBSDKApplicationDelegate.h │ │ │ ├── FBSDKButton.h │ │ │ ├── FBSDKConstants.h │ │ │ ├── FBSDKCopying.h │ │ │ ├── FBSDKCoreKit.h │ │ │ ├── FBSDKGraphErrorRecoveryProcessor.h │ │ │ ├── FBSDKGraphRequest.h │ │ │ ├── FBSDKGraphRequestConnection.h │ │ │ ├── FBSDKGraphRequestDataAttachment.h │ │ │ ├── FBSDKMeasurementEvent.h │ │ │ ├── FBSDKMutableCopying.h │ │ │ ├── FBSDKProfile.h │ │ │ ├── FBSDKProfilePictureView.h │ │ │ ├── FBSDKSettings.h │ │ │ ├── FBSDKTestUsersManager.h │ │ │ ├── FBSDKURL.h │ │ │ ├── FBSDKUtility.h │ │ │ └── FBSDKWebViewAppLinkResolver.h │ │ │ ├── FBSDKLoginKit │ │ │ ├── FBSDKDeviceLoginCodeInfo.h │ │ │ ├── FBSDKDeviceLoginManager.h │ │ │ ├── FBSDKDeviceLoginManagerResult.h │ │ │ ├── FBSDKLoginButton.h │ │ │ ├── FBSDKLoginConstants.h │ │ │ ├── FBSDKLoginKit.h │ │ │ ├── FBSDKLoginManager.h │ │ │ ├── FBSDKLoginManagerLoginResult.h │ │ │ ├── FBSDKLoginTooltipView.h │ │ │ └── FBSDKTooltipView.h │ │ │ ├── FBSDKPlacesKit │ │ │ ├── FBSDKPlacesKit.h │ │ │ ├── FBSDKPlacesKitConstants.h │ │ │ └── FBSDKPlacesManager.h │ │ │ └── FBSDKShareKit │ │ │ ├── FBSDKAppGroupContent.h │ │ │ ├── FBSDKAppInviteContent.h │ │ │ ├── FBSDKCameraEffectArguments.h │ │ │ ├── FBSDKCameraEffectTextures.h │ │ │ ├── FBSDKGameRequestContent.h │ │ │ ├── FBSDKGameRequestDialog.h │ │ │ ├── FBSDKHashtag.h │ │ │ ├── FBSDKLikeObjectType.h │ │ │ ├── FBSDKLiking.h │ │ │ ├── FBSDKMessageDialog.h │ │ │ ├── FBSDKSendButton.h │ │ │ ├── FBSDKShareAPI.h │ │ │ ├── FBSDKShareButton.h │ │ │ ├── FBSDKShareCameraEffectContent.h │ │ │ ├── FBSDKShareConstants.h │ │ │ ├── FBSDKShareDialog.h │ │ │ ├── FBSDKShareDialogMode.h │ │ │ ├── FBSDKShareKit.h │ │ │ ├── FBSDKShareLinkContent.h │ │ │ ├── FBSDKShareMediaContent.h │ │ │ ├── FBSDKShareMessengerActionButton.h │ │ │ ├── FBSDKShareMessengerGenericTemplateContent.h │ │ │ ├── FBSDKShareMessengerGenericTemplateElement.h │ │ │ ├── FBSDKShareMessengerMediaTemplateContent.h │ │ │ ├── FBSDKShareMessengerOpenGraphMusicTemplateContent.h │ │ │ ├── FBSDKShareMessengerURLActionButton.h │ │ │ ├── FBSDKShareOpenGraphAction.h │ │ │ ├── FBSDKShareOpenGraphContent.h │ │ │ ├── FBSDKShareOpenGraphObject.h │ │ │ ├── FBSDKShareOpenGraphValueContainer.h │ │ │ ├── FBSDKSharePhoto.h │ │ │ ├── FBSDKSharePhotoContent.h │ │ │ ├── FBSDKShareVideo.h │ │ │ ├── FBSDKShareVideoContent.h │ │ │ ├── FBSDKSharing.h │ │ │ ├── FBSDKSharingButton.h │ │ │ ├── FBSDKSharingContent.h │ │ │ ├── FBSDKSharingScheme.h │ │ │ └── FBSDKSharingValidation.h │ ├── Firebase │ │ └── iOS │ │ │ ├── FirebaseCore │ │ │ ├── FIRApp.h │ │ │ ├── FIRConfiguration.h │ │ │ ├── FIRLoggerLevel.h │ │ │ └── FIROptions.h │ │ │ └── FirebaseMessaging │ │ │ ├── FIRMessaging.h │ │ │ └── FIRMessagingExtensionHelper.h │ ├── X11 │ │ ├── DECkeysym.h │ │ ├── HPkeysym.h │ │ ├── ImUtil.h │ │ ├── Sunkeysym.h │ │ ├── X.h │ │ ├── XF86keysym.h │ │ ├── XKBlib.h │ │ ├── XWDFile.h │ │ ├── Xalloca.h │ │ ├── Xarch.h │ │ ├── Xatom.h │ │ ├── Xauth.h │ │ ├── Xcms.h │ │ ├── Xdefs.h │ │ ├── Xfuncproto.h │ │ ├── Xfuncs.h │ │ ├── Xlib-xcb.h │ │ ├── Xlib.h │ │ ├── XlibConf.h │ │ ├── Xlibint.h │ │ ├── Xlocale.h │ │ ├── Xmd.h │ │ ├── Xos.h │ │ ├── Xos_r.h │ │ ├── Xosdefs.h │ │ ├── Xpoll.h │ │ ├── Xproto.h │ │ ├── Xprotostr.h │ │ ├── Xregion.h │ │ ├── Xresource.h │ │ ├── Xthreads.h │ │ ├── Xutil.h │ │ ├── Xw32defs.h │ │ ├── Xwindows.h │ │ ├── Xwinsock.h │ │ ├── ap_keysym.h │ │ ├── cursorfont.h │ │ ├── keysym.h │ │ ├── keysymdef.h │ │ └── xshmfence.h │ ├── alipay │ │ └── iOS │ │ │ ├── APayAuthInfo.h │ │ │ └── AlipaySDK.h │ ├── cairo │ │ ├── COPYING │ │ ├── COPYING-LGPL-2.1 │ │ ├── COPYING-MPL-1.1 │ │ ├── cairo-deprecated.h │ │ ├── cairo-features.h │ │ ├── cairo-ft.h │ │ ├── cairo-gl.h │ │ ├── cairo-pdf.h │ │ ├── cairo-ps.h │ │ ├── cairo-script-interpreter.h │ │ ├── cairo-script.h │ │ ├── cairo-svg.h │ │ ├── cairo-tee.h │ │ ├── cairo-version.h │ │ ├── cairo-xcb.h │ │ ├── cairo-xlib-xrender.h │ │ ├── cairo-xlib.h │ │ └── cairo.h │ ├── curl │ │ ├── COPYING │ │ ├── README │ │ ├── curl.h │ │ ├── curlver.h │ │ ├── easy.h │ │ ├── mprintf.h │ │ ├── multi.h │ │ ├── stdcheaders.h │ │ ├── system.h │ │ └── typecheck-gcc.h │ ├── ffmpeg │ │ ├── COPYING.LGPLv2.1 │ │ ├── avcodec.h │ │ ├── avdevice.h │ │ ├── avfilter.h │ │ ├── avformat.h │ │ ├── avio.h │ │ ├── ffmpeg.h │ │ ├── libavcodec │ │ │ └── version.h │ │ ├── libavdevice │ │ │ └── version.h │ │ ├── libavfilter │ │ │ └── version.h │ │ ├── libavformat │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── attributes.h │ │ │ ├── avutil.h │ │ │ ├── buffer.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── dict.h │ │ │ ├── error.h │ │ │ ├── frame.h │ │ │ ├── hwcontext.h │ │ │ ├── intfloat.h │ │ │ ├── log.h │ │ │ ├── macros.h │ │ │ ├── mathematics.h │ │ │ ├── mem.h │ │ │ ├── opt.h │ │ │ ├── pixfmt.h │ │ │ ├── rational.h │ │ │ ├── samplefmt.h │ │ │ └── version.h │ │ ├── libswresample │ │ │ └── version.h │ │ ├── libswscale │ │ │ └── version.h │ │ ├── swresample.h │ │ ├── swscale.h │ │ └── version.txt │ ├── freetype │ │ ├── freetype.h │ │ ├── ft2build.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftconfig.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftheader.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstdlib.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ ├── ginger │ │ ├── LICENSE │ │ └── ginger.h │ ├── gl │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GL │ │ │ ├── gl3.h │ │ │ ├── glext.h │ │ │ └── gltypes.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── GLES3 │ │ │ ├── gl3.h │ │ │ ├── gl3ext.h │ │ │ └── gl3platform.h │ │ ├── GLX │ │ │ ├── gl.h │ │ │ ├── gl_mangle.h │ │ │ ├── glcorearb.h │ │ │ ├── glext.h │ │ │ ├── glx.h │ │ │ ├── glx_mangle.h │ │ │ ├── glxext.h │ │ │ ├── glxint.h │ │ │ ├── glxmd.h │ │ │ ├── glxproto.h │ │ │ └── glxtokens.h │ │ └── KHR │ │ │ └── khrplatform.h │ ├── glib │ │ ├── COPYING │ │ ├── gio │ │ │ ├── gaction.h │ │ │ ├── gactiongroup.h │ │ │ ├── gactiongroupexporter.h │ │ │ ├── gactionmap.h │ │ │ ├── gappinfo.h │ │ │ ├── gapplication.h │ │ │ ├── gapplicationcommandline.h │ │ │ ├── gasyncinitable.h │ │ │ ├── gasyncresult.h │ │ │ ├── gbufferedinputstream.h │ │ │ ├── gbufferedoutputstream.h │ │ │ ├── gbytesicon.h │ │ │ ├── gcancellable.h │ │ │ ├── gcharsetconverter.h │ │ │ ├── gcontenttype.h │ │ │ ├── gconverter.h │ │ │ ├── gconverterinputstream.h │ │ │ ├── gconverteroutputstream.h │ │ │ ├── gcredentials.h │ │ │ ├── gdatainputstream.h │ │ │ ├── gdataoutputstream.h │ │ │ ├── gdbusactiongroup.h │ │ │ ├── gdbusaddress.h │ │ │ ├── gdbusauthobserver.h │ │ │ ├── gdbusconnection.h │ │ │ ├── gdbuserror.h │ │ │ ├── gdbusinterface.h │ │ │ ├── gdbusinterfaceskeleton.h │ │ │ ├── gdbusintrospection.h │ │ │ ├── gdbusmenumodel.h │ │ │ ├── gdbusmessage.h │ │ │ ├── gdbusmethodinvocation.h │ │ │ ├── gdbusnameowning.h │ │ │ ├── gdbusnamewatching.h │ │ │ ├── gdbusobject.h │ │ │ ├── gdbusobjectmanager.h │ │ │ ├── gdbusobjectmanagerclient.h │ │ │ ├── gdbusobjectmanagerserver.h │ │ │ ├── gdbusobjectproxy.h │ │ │ ├── gdbusobjectskeleton.h │ │ │ ├── gdbusproxy.h │ │ │ ├── gdbusserver.h │ │ │ ├── gdbusutils.h │ │ │ ├── gdrive.h │ │ │ ├── gemblem.h │ │ │ ├── gemblemedicon.h │ │ │ ├── gfile.h │ │ │ ├── gfileattribute.h │ │ │ ├── gfileenumerator.h │ │ │ ├── gfileicon.h │ │ │ ├── gfileinfo.h │ │ │ ├── gfileinputstream.h │ │ │ ├── gfileiostream.h │ │ │ ├── gfilemonitor.h │ │ │ ├── gfilenamecompleter.h │ │ │ ├── gfileoutputstream.h │ │ │ ├── gfilterinputstream.h │ │ │ ├── gfilteroutputstream.h │ │ │ ├── gicon.h │ │ │ ├── ginetaddress.h │ │ │ ├── ginetaddressmask.h │ │ │ ├── ginetsocketaddress.h │ │ │ ├── ginitable.h │ │ │ ├── ginputstream.h │ │ │ ├── gio-autocleanups.h │ │ │ ├── gio.h │ │ │ ├── gioenums.h │ │ │ ├── gioenumtypes.h │ │ │ ├── gioerror.h │ │ │ ├── giomodule.h │ │ │ ├── gioscheduler.h │ │ │ ├── giostream.h │ │ │ ├── giotypes.h │ │ │ ├── glistmodel.h │ │ │ ├── gliststore.h │ │ │ ├── gloadableicon.h │ │ │ ├── gmemoryinputstream.h │ │ │ ├── gmemoryoutputstream.h │ │ │ ├── gmenu.h │ │ │ ├── gmenuexporter.h │ │ │ ├── gmenumodel.h │ │ │ ├── gmount.h │ │ │ ├── gmountoperation.h │ │ │ ├── gnativevolumemonitor.h │ │ │ ├── gnetworkaddress.h │ │ │ ├── gnetworking.h │ │ │ ├── gnetworkmonitor.h │ │ │ ├── gnetworkservice.h │ │ │ ├── gnotification.h │ │ │ ├── goutputstream.h │ │ │ ├── gpermission.h │ │ │ ├── gpollableinputstream.h │ │ │ ├── gpollableoutputstream.h │ │ │ ├── gpollableutils.h │ │ │ ├── gpropertyaction.h │ │ │ ├── gproxy.h │ │ │ ├── gproxyaddress.h │ │ │ ├── gproxyaddressenumerator.h │ │ │ ├── gproxyresolver.h │ │ │ ├── gremoteactiongroup.h │ │ │ ├── gresolver.h │ │ │ ├── gresource.h │ │ │ ├── gseekable.h │ │ │ ├── gsettings.h │ │ │ ├── gsettingsbackend.h │ │ │ ├── gsettingsschema.h │ │ │ ├── gsimpleaction.h │ │ │ ├── gsimpleactiongroup.h │ │ │ ├── gsimpleasyncresult.h │ │ │ ├── gsimpleiostream.h │ │ │ ├── gsimplepermission.h │ │ │ ├── gsimpleproxyresolver.h │ │ │ ├── gsocket.h │ │ │ ├── gsocketaddress.h │ │ │ ├── gsocketaddressenumerator.h │ │ │ ├── gsocketclient.h │ │ │ ├── gsocketconnectable.h │ │ │ ├── gsocketconnection.h │ │ │ ├── gsocketcontrolmessage.h │ │ │ ├── gsocketlistener.h │ │ │ ├── gsocketservice.h │ │ │ ├── gsrvtarget.h │ │ │ ├── gsubprocess.h │ │ │ ├── gsubprocesslauncher.h │ │ │ ├── gtask.h │ │ │ ├── gtcpconnection.h │ │ │ ├── gtcpwrapperconnection.h │ │ │ ├── gtestdbus.h │ │ │ ├── gthemedicon.h │ │ │ ├── gthreadedsocketservice.h │ │ │ ├── gtlsbackend.h │ │ │ ├── gtlscertificate.h │ │ │ ├── gtlsclientconnection.h │ │ │ ├── gtlsconnection.h │ │ │ ├── gtlsdatabase.h │ │ │ ├── gtlsfiledatabase.h │ │ │ ├── gtlsinteraction.h │ │ │ ├── gtlspassword.h │ │ │ ├── gtlsserverconnection.h │ │ │ ├── gvfs.h │ │ │ ├── gvolume.h │ │ │ ├── gvolumemonitor.h │ │ │ ├── gzlibcompressor.h │ │ │ └── gzlibdecompressor.h │ │ ├── glib-object.h │ │ ├── glib-unix.h │ │ ├── glib.h │ │ ├── glib │ │ │ ├── deprecated │ │ │ │ ├── gallocator.h │ │ │ │ ├── gcache.h │ │ │ │ ├── gcompletion.h │ │ │ │ ├── gmain.h │ │ │ │ ├── grel.h │ │ │ │ └── gthread.h │ │ │ ├── galloca.h │ │ │ ├── garray.h │ │ │ ├── gasyncqueue.h │ │ │ ├── gatomic.h │ │ │ ├── gbacktrace.h │ │ │ ├── gbase64.h │ │ │ ├── gbitlock.h │ │ │ ├── gbookmarkfile.h │ │ │ ├── gbytes.h │ │ │ ├── gcharset.h │ │ │ ├── gchecksum.h │ │ │ ├── gconvert.h │ │ │ ├── gdataset.h │ │ │ ├── gdate.h │ │ │ ├── gdatetime.h │ │ │ ├── gdir.h │ │ │ ├── genviron.h │ │ │ ├── gerror.h │ │ │ ├── gfileutils.h │ │ │ ├── ggettext.h │ │ │ ├── ghash.h │ │ │ ├── ghmac.h │ │ │ ├── ghook.h │ │ │ ├── ghostutils.h │ │ │ ├── gi18n-lib.h │ │ │ ├── gi18n.h │ │ │ ├── giochannel.h │ │ │ ├── gkeyfile.h │ │ │ ├── glib-autocleanups.h │ │ │ ├── glist.h │ │ │ ├── gmacros.h │ │ │ ├── gmain.h │ │ │ ├── gmappedfile.h │ │ │ ├── gmarkup.h │ │ │ ├── gmem.h │ │ │ ├── gmessages.h │ │ │ ├── gnode.h │ │ │ ├── goption.h │ │ │ ├── gpattern.h │ │ │ ├── gpoll.h │ │ │ ├── gprimes.h │ │ │ ├── gprintf.h │ │ │ ├── gqsort.h │ │ │ ├── gquark.h │ │ │ ├── gqueue.h │ │ │ ├── grand.h │ │ │ ├── gregex.h │ │ │ ├── gscanner.h │ │ │ ├── gsequence.h │ │ │ ├── gshell.h │ │ │ ├── gslice.h │ │ │ ├── gslist.h │ │ │ ├── gspawn.h │ │ │ ├── gstdio.h │ │ │ ├── gstrfuncs.h │ │ │ ├── gstring.h │ │ │ ├── gstringchunk.h │ │ │ ├── gtestutils.h │ │ │ ├── gthread.h │ │ │ ├── gthreadpool.h │ │ │ ├── gtimer.h │ │ │ ├── gtimezone.h │ │ │ ├── gtrashstack.h │ │ │ ├── gtree.h │ │ │ ├── gtypes.h │ │ │ ├── gunicode.h │ │ │ ├── gurifuncs.h │ │ │ ├── gutils.h │ │ │ ├── gvariant.h │ │ │ ├── gvarianttype.h │ │ │ ├── gversion.h │ │ │ ├── gversionmacros.h │ │ │ └── gwin32.h │ │ ├── glibconfig.h │ │ ├── gmodule.h │ │ └── gobject │ │ │ ├── gbinding.h │ │ │ ├── gboxed.h │ │ │ ├── gclosure.h │ │ │ ├── genums.h │ │ │ ├── glib-types.h │ │ │ ├── gmarshal.h │ │ │ ├── gobject-autocleanups.h │ │ │ ├── gobject.h │ │ │ ├── gobjectnotifyqueue.c │ │ │ ├── gparam.h │ │ │ ├── gparamspecs.h │ │ │ ├── gsignal.h │ │ │ ├── gsourceclosure.h │ │ │ ├── gtype.h │ │ │ ├── gtypemodule.h │ │ │ ├── gtypeplugin.h │ │ │ ├── gvalue.h │ │ │ ├── gvaluearray.h │ │ │ ├── gvaluecollector.h │ │ │ └── gvaluetypes.h │ ├── gtk │ │ ├── COPYING │ │ ├── atk │ │ │ ├── atk-enum-types.h │ │ │ ├── atk.h │ │ │ ├── atkaction.h │ │ │ ├── atkcomponent.h │ │ │ ├── atkdocument.h │ │ │ ├── atkeditabletext.h │ │ │ ├── atkgobjectaccessible.h │ │ │ ├── atkhyperlink.h │ │ │ ├── atkhyperlinkimpl.h │ │ │ ├── atkhypertext.h │ │ │ ├── atkimage.h │ │ │ ├── atkmisc.h │ │ │ ├── atknoopobject.h │ │ │ ├── atknoopobjectfactory.h │ │ │ ├── atkobject.h │ │ │ ├── atkobjectfactory.h │ │ │ ├── atkplug.h │ │ │ ├── atkregistry.h │ │ │ ├── atkrelation.h │ │ │ ├── atkrelationset.h │ │ │ ├── atkrelationtype.h │ │ │ ├── atkselection.h │ │ │ ├── atksocket.h │ │ │ ├── atkstate.h │ │ │ ├── atkstateset.h │ │ │ ├── atkstreamablecontent.h │ │ │ ├── atktable.h │ │ │ ├── atktext.h │ │ │ ├── atkutil.h │ │ │ └── atkvalue.h │ │ ├── cairo.h │ │ ├── gdk-pixbuf │ │ │ ├── gdk-pixbuf-animation.h │ │ │ ├── gdk-pixbuf-core.h │ │ │ ├── gdk-pixbuf-enum-types.h │ │ │ ├── gdk-pixbuf-features.h │ │ │ ├── gdk-pixbuf-io.h │ │ │ ├── gdk-pixbuf-loader.h │ │ │ ├── gdk-pixbuf-marshal.h │ │ │ ├── gdk-pixbuf-simple-anim.h │ │ │ ├── gdk-pixbuf-transform.h │ │ │ ├── gdk-pixbuf.h │ │ │ └── gdk-pixdata.h │ │ ├── gdk │ │ │ ├── gdk.h │ │ │ ├── gdkapplaunchcontext.h │ │ │ ├── gdkcairo.h │ │ │ ├── gdkcolor.h │ │ │ ├── gdkcursor.h │ │ │ ├── gdkdisplay.h │ │ │ ├── gdkdisplaymanager.h │ │ │ ├── gdkdnd.h │ │ │ ├── gdkdrawable.h │ │ │ ├── gdkenumtypes.h │ │ │ ├── gdkevents.h │ │ │ ├── gdkfont.h │ │ │ ├── gdkgc.h │ │ │ ├── gdki18n.h │ │ │ ├── gdkimage.h │ │ │ ├── gdkinput.h │ │ │ ├── gdkkeys.h │ │ │ ├── gdkkeysyms-compat.h │ │ │ ├── gdkkeysyms.h │ │ │ ├── gdkpango.h │ │ │ ├── gdkpixbuf.h │ │ │ ├── gdkpixmap.h │ │ │ ├── gdkprivate.h │ │ │ ├── gdkproperty.h │ │ │ ├── gdkregion.h │ │ │ ├── gdkrgb.h │ │ │ ├── gdkscreen.h │ │ │ ├── gdkselection.h │ │ │ ├── gdkspawn.h │ │ │ ├── gdktestutils.h │ │ │ ├── gdktypes.h │ │ │ ├── gdkvisual.h │ │ │ ├── gdkwin32.h │ │ │ ├── gdkwindow.h │ │ │ └── x11 │ │ │ │ ├── MwmUtil.h │ │ │ │ ├── gdkasync.h │ │ │ │ ├── gdkdisplay-x11.h │ │ │ │ ├── gdkdrawable-x11.h │ │ │ │ ├── gdkinputprivate.h │ │ │ │ ├── gdkpixmap-x11.h │ │ │ │ ├── gdkprivate-x11.h │ │ │ │ ├── gdkscreen-x11.h │ │ │ │ ├── gdkwindow-x11.h │ │ │ │ ├── gdkx.h │ │ │ │ ├── xsettings-client.h │ │ │ │ └── xsettings-common.h │ │ ├── gdkconfig.h │ │ └── gtk │ │ │ ├── gtk.h │ │ │ ├── gtkaboutdialog.h │ │ │ ├── gtkaccelgroup.h │ │ │ ├── gtkaccellabel.h │ │ │ ├── gtkaccelmap.h │ │ │ ├── gtkaccessible.h │ │ │ ├── gtkaction.h │ │ │ ├── gtkactiongroup.h │ │ │ ├── gtkactivatable.h │ │ │ ├── gtkadjustment.h │ │ │ ├── gtkalignment.h │ │ │ ├── gtkarrow.h │ │ │ ├── gtkaspectframe.h │ │ │ ├── gtkassistant.h │ │ │ ├── gtkbbox.h │ │ │ ├── gtkbin.h │ │ │ ├── gtkbindings.h │ │ │ ├── gtkbox.h │ │ │ ├── gtkbuildable.h │ │ │ ├── gtkbuilder.h │ │ │ ├── gtkbutton.h │ │ │ ├── gtkcalendar.h │ │ │ ├── gtkcelleditable.h │ │ │ ├── gtkcelllayout.h │ │ │ ├── gtkcellrenderer.h │ │ │ ├── gtkcellrendereraccel.h │ │ │ ├── gtkcellrenderercombo.h │ │ │ ├── gtkcellrendererpixbuf.h │ │ │ ├── gtkcellrendererprogress.h │ │ │ ├── gtkcellrendererspin.h │ │ │ ├── gtkcellrendererspinner.h │ │ │ ├── gtkcellrenderertext.h │ │ │ ├── gtkcellrenderertoggle.h │ │ │ ├── gtkcellview.h │ │ │ ├── gtkcheckbutton.h │ │ │ ├── gtkcheckmenuitem.h │ │ │ ├── gtkclipboard.h │ │ │ ├── gtkclist.h │ │ │ ├── gtkcolorbutton.h │ │ │ ├── gtkcolorsel.h │ │ │ ├── gtkcolorseldialog.h │ │ │ ├── gtkcombo.h │ │ │ ├── gtkcombobox.h │ │ │ ├── gtkcomboboxentry.h │ │ │ ├── gtkcontainer.h │ │ │ ├── gtkctree.h │ │ │ ├── gtkcurve.h │ │ │ ├── gtkdebug.h │ │ │ ├── gtkdialog.h │ │ │ ├── gtkdnd.h │ │ │ ├── gtkdrawingarea.h │ │ │ ├── gtkeditable.h │ │ │ ├── gtkentry.h │ │ │ ├── gtkentrybuffer.h │ │ │ ├── gtkentrycompletion.h │ │ │ ├── gtkenums.h │ │ │ ├── gtkeventbox.h │ │ │ ├── gtkexpander.h │ │ │ ├── gtkfilechooser.h │ │ │ ├── gtkfilechooserbutton.h │ │ │ ├── gtkfilechooserdialog.h │ │ │ ├── gtkfilechooserwidget.h │ │ │ ├── gtkfilefilter.h │ │ │ ├── gtkfilesel.h │ │ │ ├── gtkfixed.h │ │ │ ├── gtkfontbutton.h │ │ │ ├── gtkfontsel.h │ │ │ ├── gtkframe.h │ │ │ ├── gtkgamma.h │ │ │ ├── gtkgc.h │ │ │ ├── gtkhandlebox.h │ │ │ ├── gtkhbbox.h │ │ │ ├── gtkhbox.h │ │ │ ├── gtkhpaned.h │ │ │ ├── gtkhruler.h │ │ │ ├── gtkhscale.h │ │ │ ├── gtkhscrollbar.h │ │ │ ├── gtkhseparator.h │ │ │ ├── gtkhsv.h │ │ │ ├── gtkiconfactory.h │ │ │ ├── gtkicontheme.h │ │ │ ├── gtkiconview.h │ │ │ ├── gtkimage.h │ │ │ ├── gtkimagemenuitem.h │ │ │ ├── gtkimcontext.h │ │ │ ├── gtkimcontextsimple.h │ │ │ ├── gtkimmodule.h │ │ │ ├── gtkimmulticontext.h │ │ │ ├── gtkinfobar.h │ │ │ ├── gtkinputdialog.h │ │ │ ├── gtkinvisible.h │ │ │ ├── gtkitem.h │ │ │ ├── gtkitemfactory.h │ │ │ ├── gtklabel.h │ │ │ ├── gtklayout.h │ │ │ ├── gtklinkbutton.h │ │ │ ├── gtklist.h │ │ │ ├── gtklistitem.h │ │ │ ├── gtkliststore.h │ │ │ ├── gtkmain.h │ │ │ ├── gtkmarshal.h │ │ │ ├── gtkmenu.h │ │ │ ├── gtkmenubar.h │ │ │ ├── gtkmenuitem.h │ │ │ ├── gtkmenushell.h │ │ │ ├── gtkmenutoolbutton.h │ │ │ ├── gtkmessagedialog.h │ │ │ ├── gtkmisc.h │ │ │ ├── gtkmodules.h │ │ │ ├── gtkmountoperation.h │ │ │ ├── gtknotebook.h │ │ │ ├── gtkobject.h │ │ │ ├── gtkoffscreenwindow.h │ │ │ ├── gtkoldeditable.h │ │ │ ├── gtkoptionmenu.h │ │ │ ├── gtkorientable.h │ │ │ ├── gtkpagesetup.h │ │ │ ├── gtkpaned.h │ │ │ ├── gtkpapersize.h │ │ │ ├── gtkpixmap.h │ │ │ ├── gtkplug.h │ │ │ ├── gtkpreview.h │ │ │ ├── gtkprintcontext.h │ │ │ ├── gtkprintoperation.h │ │ │ ├── gtkprintoperationpreview.h │ │ │ ├── gtkprintsettings.h │ │ │ ├── gtkprivate.h │ │ │ ├── gtkprogress.h │ │ │ ├── gtkprogressbar.h │ │ │ ├── gtkradioaction.h │ │ │ ├── gtkradiobutton.h │ │ │ ├── gtkradiomenuitem.h │ │ │ ├── gtkradiotoolbutton.h │ │ │ ├── gtkrange.h │ │ │ ├── gtkrc.h │ │ │ ├── gtkrecentaction.h │ │ │ ├── gtkrecentchooser.h │ │ │ ├── gtkrecentchooserdialog.h │ │ │ ├── gtkrecentchoosermenu.h │ │ │ ├── gtkrecentchooserwidget.h │ │ │ ├── gtkrecentfilter.h │ │ │ ├── gtkrecentmanager.h │ │ │ ├── gtkruler.h │ │ │ ├── gtkscale.h │ │ │ ├── gtkscalebutton.h │ │ │ ├── gtkscrollbar.h │ │ │ ├── gtkscrolledwindow.h │ │ │ ├── gtkselection.h │ │ │ ├── gtkseparator.h │ │ │ ├── gtkseparatormenuitem.h │ │ │ ├── gtkseparatortoolitem.h │ │ │ ├── gtksettings.h │ │ │ ├── gtkshow.h │ │ │ ├── gtksignal.h │ │ │ ├── gtksizegroup.h │ │ │ ├── gtksocket.h │ │ │ ├── gtkspinbutton.h │ │ │ ├── gtkspinner.h │ │ │ ├── gtkstatusbar.h │ │ │ ├── gtkstatusicon.h │ │ │ ├── gtkstock.h │ │ │ ├── gtkstyle.h │ │ │ ├── gtktable.h │ │ │ ├── gtktearoffmenuitem.h │ │ │ ├── gtktestutils.h │ │ │ ├── gtktext.h │ │ │ ├── gtktextbuffer.h │ │ │ ├── gtktextbufferrichtext.h │ │ │ ├── gtktextchild.h │ │ │ ├── gtktextdisplay.h │ │ │ ├── gtktextiter.h │ │ │ ├── gtktextlayout.h │ │ │ ├── gtktextmark.h │ │ │ ├── gtktexttag.h │ │ │ ├── gtktexttagtable.h │ │ │ ├── gtktextview.h │ │ │ ├── gtktipsquery.h │ │ │ ├── gtktoggleaction.h │ │ │ ├── gtktogglebutton.h │ │ │ ├── gtktoggletoolbutton.h │ │ │ ├── gtktoolbar.h │ │ │ ├── gtktoolbutton.h │ │ │ ├── gtktoolitem.h │ │ │ ├── gtktoolitemgroup.h │ │ │ ├── gtktoolpalette.h │ │ │ ├── gtktoolshell.h │ │ │ ├── gtktooltip.h │ │ │ ├── gtktooltips.h │ │ │ ├── gtktree.h │ │ │ ├── gtktreednd.h │ │ │ ├── gtktreeitem.h │ │ │ ├── gtktreemodel.h │ │ │ ├── gtktreemodelfilter.h │ │ │ ├── gtktreemodelsort.h │ │ │ ├── gtktreeselection.h │ │ │ ├── gtktreesortable.h │ │ │ ├── gtktreestore.h │ │ │ ├── gtktreeview.h │ │ │ ├── gtktreeviewcolumn.h │ │ │ ├── gtktypebuiltins.h │ │ │ ├── gtktypeutils.h │ │ │ ├── gtkuimanager.h │ │ │ ├── gtkvbbox.h │ │ │ ├── gtkvbox.h │ │ │ ├── gtkversion.h │ │ │ ├── gtkviewport.h │ │ │ ├── gtkvolumebutton.h │ │ │ ├── gtkvpaned.h │ │ │ ├── gtkvruler.h │ │ │ ├── gtkvscale.h │ │ │ ├── gtkvscrollbar.h │ │ │ ├── gtkvseparator.h │ │ │ ├── gtkwidget.h │ │ │ └── gtkwindow.h │ ├── hiredis │ │ ├── async.h │ │ ├── dict.h │ │ ├── fmacros.h │ │ ├── hiredis.h │ │ ├── net.h │ │ ├── read.h │ │ ├── sds.h │ │ ├── sdsalloc.h │ │ └── win32.h │ ├── kvazaar │ │ ├── COPYING │ │ └── kvazaar.h │ ├── lame │ │ ├── COPYING │ │ └── lame.h │ ├── libjpeg │ │ ├── jconfig.h │ │ ├── jmorecfg.h │ │ ├── jpeglib.h │ │ └── libjpeg_slib.h │ ├── libmariadb │ │ ├── COPYING.LIB │ │ ├── README │ │ ├── errmsg.h │ │ ├── ma_common.h │ │ ├── ma_context.h │ │ ├── ma_global.h │ │ ├── ma_hash.h │ │ ├── ma_list.h │ │ ├── ma_pthread.h │ │ ├── ma_pvio.h │ │ ├── ma_server_error.h │ │ ├── ma_sha1.h │ │ ├── ma_string.h │ │ ├── ma_sys.h │ │ ├── ma_tls.h │ │ ├── mariadb │ │ │ └── ma_io.h │ │ ├── mariadb_async.h │ │ ├── mariadb_com.h │ │ ├── mariadb_ctype.h │ │ ├── mariadb_dyncol.h │ │ ├── mariadb_stmt.h │ │ ├── mysql.h │ │ ├── mysql │ │ │ ├── client_plugin.h │ │ │ ├── plugin_auth.h │ │ │ └── plugin_auth_common.h │ │ └── mysqld_error.h │ ├── libpng │ │ ├── png.h │ │ ├── png_slib.h │ │ ├── pngconf.h │ │ ├── pnglibconf.h │ │ └── pngstruct.h │ ├── libpq │ │ ├── libpq-fe.h │ │ ├── pg_config_ext.h │ │ └── postgres_ext.h │ ├── openh264 │ │ ├── LICENSE │ │ └── wels │ │ │ ├── codec_api.h │ │ │ ├── codec_app_def.h │ │ │ ├── codec_def.h │ │ │ └── codec_ver.h │ ├── openssl │ │ ├── LICENSE │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h │ ├── opus │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ └── opus_types.h │ ├── pango │ │ ├── COPYING │ │ ├── pango-attributes.h │ │ ├── pango-bidi-type.h │ │ ├── pango-break.h │ │ ├── pango-context.h │ │ ├── pango-coverage.h │ │ ├── pango-engine.h │ │ ├── pango-enum-types.h │ │ ├── pango-features.h │ │ ├── pango-font.h │ │ ├── pango-fontmap.h │ │ ├── pango-fontset.h │ │ ├── pango-glyph-item.h │ │ ├── pango-glyph.h │ │ ├── pango-gravity.h │ │ ├── pango-item.h │ │ ├── pango-language.h │ │ ├── pango-layout.h │ │ ├── pango-matrix.h │ │ ├── pango-modules.h │ │ ├── pango-ot.h │ │ ├── pango-renderer.h │ │ ├── pango-script.h │ │ ├── pango-tabs.h │ │ ├── pango-types.h │ │ ├── pango-utils.h │ │ ├── pango.h │ │ ├── pangocairo.h │ │ ├── pangofc-decoder.h │ │ ├── pangofc-font.h │ │ ├── pangofc-fontmap.h │ │ ├── pangoft2.h │ │ └── pangowin32.h │ ├── pcap │ │ ├── LICENSE │ │ ├── README │ │ ├── bluetooth.h │ │ ├── bpf.h │ │ ├── can_socketcan.h │ │ ├── dlt.h │ │ ├── export-defs.h │ │ ├── ipnet.h │ │ ├── namedb.h │ │ ├── nflog.h │ │ ├── pcap.h │ │ ├── sll.h │ │ ├── usb.h │ │ └── vlan.h │ ├── sqlite │ │ ├── sqlite3.h │ │ └── sqlite3ext.h │ ├── stb │ │ └── stb_image.h │ ├── unicode │ │ ├── LICENSE │ │ ├── alphaindex.h │ │ ├── appendable.h │ │ ├── basictz.h │ │ ├── brkiter.h │ │ ├── bytestream.h │ │ ├── bytestrie.h │ │ ├── bytestriebuilder.h │ │ ├── calendar.h │ │ ├── caniter.h │ │ ├── casemap.h │ │ ├── char16ptr.h │ │ ├── chariter.h │ │ ├── choicfmt.h │ │ ├── coleitr.h │ │ ├── coll.h │ │ ├── compactdecimalformat.h │ │ ├── curramt.h │ │ ├── currpinf.h │ │ ├── currunit.h │ │ ├── datefmt.h │ │ ├── dbbi.h │ │ ├── dcfmtsym.h │ │ ├── decimfmt.h │ │ ├── docmain.h │ │ ├── dtfmtsym.h │ │ ├── dtintrv.h │ │ ├── dtitvfmt.h │ │ ├── dtitvinf.h │ │ ├── dtptngen.h │ │ ├── dtrule.h │ │ ├── edits.h │ │ ├── enumset.h │ │ ├── errorcode.h │ │ ├── fieldpos.h │ │ ├── filteredbrk.h │ │ ├── fmtable.h │ │ ├── format.h │ │ ├── formattedvalue.h │ │ ├── fpositer.h │ │ ├── gender.h │ │ ├── gregocal.h │ │ ├── icudataver.h │ │ ├── icuplug.h │ │ ├── idna.h │ │ ├── listformatter.h │ │ ├── localebuilder.h │ │ ├── localematcher.h │ │ ├── localpointer.h │ │ ├── locdspnm.h │ │ ├── locid.h │ │ ├── measfmt.h │ │ ├── measunit.h │ │ ├── measure.h │ │ ├── messagepattern.h │ │ ├── msgfmt.h │ │ ├── normalizer2.h │ │ ├── normlzr.h │ │ ├── nounit.h │ │ ├── numberformatter.h │ │ ├── numberrangeformatter.h │ │ ├── numfmt.h │ │ ├── numsys.h │ │ ├── parseerr.h │ │ ├── parsepos.h │ │ ├── platform.h │ │ ├── plurfmt.h │ │ ├── plurrule.h │ │ ├── ptypes.h │ │ ├── putil.h │ │ ├── rbbi.h │ │ ├── rbnf.h │ │ ├── rbtz.h │ │ ├── regex.h │ │ ├── region.h │ │ ├── reldatefmt.h │ │ ├── rep.h │ │ ├── resbund.h │ │ ├── schriter.h │ │ ├── scientificnumberformatter.h │ │ ├── search.h │ │ ├── selfmt.h │ │ ├── simpleformatter.h │ │ ├── simpletz.h │ │ ├── smpdtfmt.h │ │ ├── sortkey.h │ │ ├── std_string.h │ │ ├── strenum.h │ │ ├── stringoptions.h │ │ ├── stringpiece.h │ │ ├── stringtriebuilder.h │ │ ├── stsearch.h │ │ ├── symtable.h │ │ ├── tblcoll.h │ │ ├── timezone.h │ │ ├── tmunit.h │ │ ├── tmutamt.h │ │ ├── tmutfmt.h │ │ ├── translit.h │ │ ├── tzfmt.h │ │ ├── tznames.h │ │ ├── tzrule.h │ │ ├── tztrans.h │ │ ├── ubidi.h │ │ ├── ubiditransform.h │ │ ├── ubrk.h │ │ ├── ucal.h │ │ ├── ucasemap.h │ │ ├── ucat.h │ │ ├── uchar.h │ │ ├── ucharstrie.h │ │ ├── ucharstriebuilder.h │ │ ├── uchriter.h │ │ ├── uclean.h │ │ ├── ucnv.h │ │ ├── ucnv_cb.h │ │ ├── ucnv_err.h │ │ ├── ucnvsel.h │ │ ├── ucol.h │ │ ├── ucoleitr.h │ │ ├── uconfig.h │ │ ├── ucpmap.h │ │ ├── ucptrie.h │ │ ├── ucsdet.h │ │ ├── ucurr.h │ │ ├── udat.h │ │ ├── udata.h │ │ ├── udateintervalformat.h │ │ ├── udatpg.h │ │ ├── udisplaycontext.h │ │ ├── uenum.h │ │ ├── ufieldpositer.h │ │ ├── uformattable.h │ │ ├── uformattedvalue.h │ │ ├── ugender.h │ │ ├── uidna.h │ │ ├── uiter.h │ │ ├── uldnames.h │ │ ├── ulistformatter.h │ │ ├── uloc.h │ │ ├── ulocdata.h │ │ ├── umachine.h │ │ ├── umisc.h │ │ ├── umsg.h │ │ ├── umutablecptrie.h │ │ ├── unifilt.h │ │ ├── unifunct.h │ │ ├── unimatch.h │ │ ├── unirepl.h │ │ ├── uniset.h │ │ ├── unistr.h │ │ ├── unorm.h │ │ ├── unorm2.h │ │ ├── unum.h │ │ ├── unumberformatter.h │ │ ├── unumsys.h │ │ ├── uobject.h │ │ ├── upluralrules.h │ │ ├── uregex.h │ │ ├── uregion.h │ │ ├── ureldatefmt.h │ │ ├── urename.h │ │ ├── urep.h │ │ ├── ures.h │ │ ├── uscript.h │ │ ├── usearch.h │ │ ├── uset.h │ │ ├── usetiter.h │ │ ├── ushape.h │ │ ├── uspoof.h │ │ ├── usprep.h │ │ ├── ustdio.h │ │ ├── ustream.h │ │ ├── ustring.h │ │ ├── ustringtrie.h │ │ ├── utext.h │ │ ├── utf.h │ │ ├── utf16.h │ │ ├── utf32.h │ │ ├── utf8.h │ │ ├── utf_old.h │ │ ├── utmscale.h │ │ ├── utrace.h │ │ ├── utrans.h │ │ ├── utypes.h │ │ ├── uvernum.h │ │ ├── uversion.h │ │ └── vtzone.h │ ├── vpx │ │ ├── LICENSE │ │ ├── README │ │ ├── vp8.h │ │ ├── vp8cx.h │ │ ├── vp8dx.h │ │ ├── vpx_codec.h │ │ ├── vpx_decoder.h │ │ ├── vpx_encoder.h │ │ ├── vpx_frame_buffer.h │ │ ├── vpx_image.h │ │ └── vpx_integer.h │ ├── wechat │ │ └── iOS │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ └── WechatAuthSDK.h │ ├── winpcap │ │ ├── Packet32.h │ │ ├── Win32-Extensions.h │ │ ├── bittypes.h │ │ ├── ip6_misc.h │ │ ├── pcap-bpf.h │ │ ├── pcap-namedb.h │ │ ├── pcap-stdinc.h │ │ ├── pcap.h │ │ ├── pcap │ │ │ ├── bluetooth.h │ │ │ ├── bpf.h │ │ │ ├── namedb.h │ │ │ ├── pcap.h │ │ │ ├── sll.h │ │ │ ├── usb.h │ │ │ └── vlan.h │ │ └── remote-ext.h │ ├── xgpush │ │ └── iOS │ │ │ └── XGPush.h │ ├── zlib │ │ ├── zconf.h │ │ ├── zlib.h │ │ └── zlib_slib.h │ └── zxing │ │ ├── BarcodeFormat.h │ │ ├── BinaryBitmap.h │ │ ├── BitArray.h │ │ ├── BitHacks.h │ │ ├── BitMatrix.h │ │ ├── BitSource.h │ │ ├── BitWrapperBinarizer.h │ │ ├── ByteArray.h │ │ ├── ByteMatrix.h │ │ ├── CharacterSet.h │ │ ├── CharacterSetECI.h │ │ ├── CustomData.h │ │ ├── DecodeHints.h │ │ ├── DecodeStatus.h │ │ ├── DecoderResult.h │ │ ├── DetectorResult.h │ │ ├── GenericGF.h │ │ ├── GenericGFPoly.h │ │ ├── GenericLuminanceSource.h │ │ ├── GlobalHistogramBinarizer.h │ │ ├── GridSampler.h │ │ ├── HybridBinarizer.h │ │ ├── LuminanceSource.h │ │ ├── MultiFormatReader.h │ │ ├── MultiFormatWriter.h │ │ ├── PerspectiveTransform.h │ │ ├── Reader.h │ │ ├── ReedSolomonDecoder.h │ │ ├── ReedSolomonEncoder.h │ │ ├── Result.h │ │ ├── ResultMetadata.h │ │ ├── ResultPoint.h │ │ ├── TextDecoder.h │ │ ├── TextEncoder.h │ │ ├── TextUtfEncoding.h │ │ ├── WhiteRectDetector.h │ │ ├── ZXBigInteger.h │ │ ├── ZXConfig.h │ │ ├── ZXContainerAlgorithms.h │ │ ├── ZXNullable.h │ │ ├── ZXNumeric.h │ │ ├── ZXStrConvWorkaround.h │ │ └── ZXTestSupport.h ├── java │ └── ShortcutBadger │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── me │ │ └── leolin │ │ └── shortcutbadger │ │ ├── Badger.java │ │ ├── ShortcutBadgeException.java │ │ ├── ShortcutBadger.java │ │ ├── impl │ │ ├── AdwHomeBadger.java │ │ ├── ApexHomeBadger.java │ │ ├── AsusHomeBadger.java │ │ ├── DefaultBadger.java │ │ ├── EverythingMeHomeBadger.java │ │ ├── HuaweiHomeBadger.java │ │ ├── IntentConstants.java │ │ ├── LGHomeBadger.java │ │ ├── NewHtcHomeBadger.java │ │ ├── NovaHomeBadger.java │ │ ├── OPPOHomeBader.java │ │ ├── SamsungHomeBadger.java │ │ ├── SonyHomeBadger.java │ │ ├── VivoHomeBadger.java │ │ ├── XiaomiHomeBadger.java │ │ ├── ZTEHomeBadger.java │ │ └── ZukHomeBadger.java │ │ └── util │ │ ├── BroadcastHelper.java │ │ └── CloseHelper.java └── src │ ├── android │ ├── cpu-features-slib.h │ ├── cpu-features.c │ └── cpu-features.h │ ├── freetype │ ├── README │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ └── LICENSE.TXT │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ └── src │ │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ └── autofit.c │ │ ├── base │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpic.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ └── md5.h │ │ ├── bdf │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ └── bdflib.c │ │ ├── bzip2 │ │ └── ftbzip2.c │ │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ └── ftcsbits.h │ │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ └── cfftoken.h │ │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ └── type1cid.c │ │ ├── gxvalid │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ └── gxvtrak.c │ │ ├── gzip │ │ └── ftgzip.c │ │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ └── ftzopen.h │ │ ├── otvalid │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ └── otvmod.h │ │ ├── pcf │ │ ├── README │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ └── pcfutil.h │ │ ├── pfr │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ └── pfrtypes.h │ │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ │ ├── pshinter │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ └── pshrec.h │ │ ├── psnames │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ └── pstables.h │ │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ └── rastpic.h │ │ ├── sfnt │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ └── ttsbit.h │ │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ └── smooth.c │ │ ├── truetype │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ │ ├── type1 │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ │ ├── type42 │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ │ └── winfonts │ │ ├── fnterrs.h │ │ ├── winfnt.c │ │ └── winfnt.h │ ├── hiredis │ ├── COPYING │ ├── README.md │ ├── adapters │ │ ├── ae.h │ │ ├── glib.h │ │ ├── ivykis.h │ │ ├── libev.h │ │ ├── libevent.h │ │ ├── libuv.h │ │ ├── macosx.h │ │ └── qt.h │ ├── async.c │ ├── async.h │ ├── dict.c │ ├── dict.h │ ├── fmacros.h │ ├── hiredis.c │ ├── hiredis.h │ ├── net.c │ ├── net.h │ ├── read.c │ ├── read.h │ ├── sds.c │ ├── sds.h │ ├── sdsalloc.h │ ├── test.c │ └── win32.h │ ├── libcef │ ├── LICENSE.txt │ ├── README.txt │ ├── include │ │ ├── base │ │ │ ├── cef_atomic_ref_count.h │ │ │ ├── cef_atomicops.h │ │ │ ├── cef_basictypes.h │ │ │ ├── cef_bind.h │ │ │ ├── cef_bind_helpers.h │ │ │ ├── cef_build.h │ │ │ ├── cef_callback.h │ │ │ ├── cef_callback_forward.h │ │ │ ├── cef_callback_helpers.h │ │ │ ├── cef_callback_list.h │ │ │ ├── cef_cancelable_callback.h │ │ │ ├── cef_lock.h │ │ │ ├── cef_logging.h │ │ │ ├── cef_macros.h │ │ │ ├── cef_move.h │ │ │ ├── cef_platform_thread.h │ │ │ ├── cef_ref_counted.h │ │ │ ├── cef_scoped_ptr.h │ │ │ ├── cef_string16.h │ │ │ ├── cef_template_util.h │ │ │ ├── cef_thread_checker.h │ │ │ ├── cef_trace_event.h │ │ │ ├── cef_tuple.h │ │ │ ├── cef_weak_ptr.h │ │ │ └── internal │ │ │ │ ├── README-TRANSFER.txt │ │ │ │ ├── cef_atomicops_arm64_gcc.h │ │ │ │ ├── cef_atomicops_arm_gcc.h │ │ │ │ ├── cef_atomicops_atomicword_compat.h │ │ │ │ ├── cef_atomicops_mac.h │ │ │ │ ├── cef_atomicops_x86_gcc.h │ │ │ │ ├── cef_atomicops_x86_msvc.h │ │ │ │ ├── cef_bind_internal.h │ │ │ │ ├── cef_bind_internal_win.h │ │ │ │ ├── cef_callback_internal.h │ │ │ │ ├── cef_lock_impl.h │ │ │ │ ├── cef_net_error_list.h │ │ │ │ ├── cef_raw_scoped_refptr_mismatch_checker.h │ │ │ │ └── cef_thread_checker_impl.h │ │ ├── capi │ │ │ ├── cef_accessibility_handler_capi.h │ │ │ ├── cef_app_capi.h │ │ │ ├── cef_audio_handler_capi.h │ │ │ ├── cef_auth_callback_capi.h │ │ │ ├── cef_base_capi.h │ │ │ ├── cef_browser_capi.h │ │ │ ├── cef_browser_process_handler_capi.h │ │ │ ├── cef_callback_capi.h │ │ │ ├── cef_client_capi.h │ │ │ ├── cef_command_line_capi.h │ │ │ ├── cef_context_menu_handler_capi.h │ │ │ ├── cef_cookie_capi.h │ │ │ ├── cef_crash_util_capi.h │ │ │ ├── cef_dialog_handler_capi.h │ │ │ ├── cef_display_handler_capi.h │ │ │ ├── cef_dom_capi.h │ │ │ ├── cef_download_handler_capi.h │ │ │ ├── cef_download_item_capi.h │ │ │ ├── cef_drag_data_capi.h │ │ │ ├── cef_drag_handler_capi.h │ │ │ ├── cef_extension_capi.h │ │ │ ├── cef_extension_handler_capi.h │ │ │ ├── cef_file_util_capi.h │ │ │ ├── cef_find_handler_capi.h │ │ │ ├── cef_focus_handler_capi.h │ │ │ ├── cef_frame_capi.h │ │ │ ├── cef_image_capi.h │ │ │ ├── cef_jsdialog_handler_capi.h │ │ │ ├── cef_keyboard_handler_capi.h │ │ │ ├── cef_life_span_handler_capi.h │ │ │ ├── cef_load_handler_capi.h │ │ │ ├── cef_menu_model_capi.h │ │ │ ├── cef_menu_model_delegate_capi.h │ │ │ ├── cef_navigation_entry_capi.h │ │ │ ├── cef_origin_whitelist_capi.h │ │ │ ├── cef_parser_capi.h │ │ │ ├── cef_path_util_capi.h │ │ │ ├── cef_print_handler_capi.h │ │ │ ├── cef_print_settings_capi.h │ │ │ ├── cef_process_message_capi.h │ │ │ ├── cef_process_util_capi.h │ │ │ ├── cef_render_handler_capi.h │ │ │ ├── cef_render_process_handler_capi.h │ │ │ ├── cef_request_callback_capi.h │ │ │ ├── cef_request_capi.h │ │ │ ├── cef_request_context_capi.h │ │ │ ├── cef_request_context_handler_capi.h │ │ │ ├── cef_request_handler_capi.h │ │ │ ├── cef_resource_bundle_capi.h │ │ │ ├── cef_resource_bundle_handler_capi.h │ │ │ ├── cef_resource_handler_capi.h │ │ │ ├── cef_resource_request_handler_capi.h │ │ │ ├── cef_response_capi.h │ │ │ ├── cef_response_filter_capi.h │ │ │ ├── cef_scheme_capi.h │ │ │ ├── cef_server_capi.h │ │ │ ├── cef_ssl_info_capi.h │ │ │ ├── cef_ssl_status_capi.h │ │ │ ├── cef_stream_capi.h │ │ │ ├── cef_string_visitor_capi.h │ │ │ ├── cef_task_capi.h │ │ │ ├── cef_thread_capi.h │ │ │ ├── cef_trace_capi.h │ │ │ ├── cef_urlrequest_capi.h │ │ │ ├── cef_v8_capi.h │ │ │ ├── cef_values_capi.h │ │ │ ├── cef_waitable_event_capi.h │ │ │ ├── cef_web_plugin_capi.h │ │ │ ├── cef_x509_certificate_capi.h │ │ │ ├── cef_xml_reader_capi.h │ │ │ ├── cef_zip_reader_capi.h │ │ │ ├── test │ │ │ │ ├── cef_test_helpers_capi.h │ │ │ │ └── cef_translator_test_capi.h │ │ │ └── views │ │ │ │ ├── cef_box_layout_capi.h │ │ │ │ ├── cef_browser_view_capi.h │ │ │ │ ├── cef_browser_view_delegate_capi.h │ │ │ │ ├── cef_button_capi.h │ │ │ │ ├── cef_button_delegate_capi.h │ │ │ │ ├── cef_display_capi.h │ │ │ │ ├── cef_fill_layout_capi.h │ │ │ │ ├── cef_label_button_capi.h │ │ │ │ ├── cef_layout_capi.h │ │ │ │ ├── cef_menu_button_capi.h │ │ │ │ ├── cef_menu_button_delegate_capi.h │ │ │ │ ├── cef_panel_capi.h │ │ │ │ ├── cef_panel_delegate_capi.h │ │ │ │ ├── cef_scroll_view_capi.h │ │ │ │ ├── cef_textfield_capi.h │ │ │ │ ├── cef_textfield_delegate_capi.h │ │ │ │ ├── cef_view_capi.h │ │ │ │ ├── cef_view_delegate_capi.h │ │ │ │ ├── cef_window_capi.h │ │ │ │ └── cef_window_delegate_capi.h │ │ ├── cef_accessibility_handler.h │ │ ├── cef_api_hash.h │ │ ├── cef_app.h │ │ ├── cef_application_mac.h │ │ ├── cef_audio_handler.h │ │ ├── cef_auth_callback.h │ │ ├── cef_base.h │ │ ├── cef_browser.h │ │ ├── cef_browser_process_handler.h │ │ ├── cef_callback.h │ │ ├── cef_client.h │ │ ├── cef_command_line.h │ │ ├── cef_config.h │ │ ├── cef_context_menu_handler.h │ │ ├── cef_cookie.h │ │ ├── cef_crash_util.h │ │ ├── cef_dialog_handler.h │ │ ├── cef_display_handler.h │ │ ├── cef_dom.h │ │ ├── cef_download_handler.h │ │ ├── cef_download_item.h │ │ ├── cef_drag_data.h │ │ ├── cef_drag_handler.h │ │ ├── cef_extension.h │ │ ├── cef_extension_handler.h │ │ ├── cef_file_util.h │ │ ├── cef_find_handler.h │ │ ├── cef_focus_handler.h │ │ ├── cef_frame.h │ │ ├── cef_image.h │ │ ├── cef_jsdialog_handler.h │ │ ├── cef_keyboard_handler.h │ │ ├── cef_life_span_handler.h │ │ ├── cef_load_handler.h │ │ ├── cef_menu_model.h │ │ ├── cef_menu_model_delegate.h │ │ ├── cef_navigation_entry.h │ │ ├── cef_origin_whitelist.h │ │ ├── cef_pack_resources.h │ │ ├── cef_pack_strings.h │ │ ├── cef_parser.h │ │ ├── cef_path_util.h │ │ ├── cef_print_handler.h │ │ ├── cef_print_settings.h │ │ ├── cef_process_message.h │ │ ├── cef_process_util.h │ │ ├── cef_render_handler.h │ │ ├── cef_render_process_handler.h │ │ ├── cef_request.h │ │ ├── cef_request_callback.h │ │ ├── cef_request_context.h │ │ ├── cef_request_context_handler.h │ │ ├── cef_request_handler.h │ │ ├── cef_resource_bundle.h │ │ ├── cef_resource_bundle_handler.h │ │ ├── cef_resource_handler.h │ │ ├── cef_resource_request_handler.h │ │ ├── cef_response.h │ │ ├── cef_response_filter.h │ │ ├── cef_sandbox_mac.h │ │ ├── cef_sandbox_win.h │ │ ├── cef_scheme.h │ │ ├── cef_server.h │ │ ├── cef_ssl_info.h │ │ ├── cef_ssl_status.h │ │ ├── cef_stream.h │ │ ├── cef_string_visitor.h │ │ ├── cef_task.h │ │ ├── cef_thread.h │ │ ├── cef_trace.h │ │ ├── cef_urlrequest.h │ │ ├── cef_v8.h │ │ ├── cef_values.h │ │ ├── cef_version.h │ │ ├── cef_waitable_event.h │ │ ├── cef_web_plugin.h │ │ ├── cef_x509_certificate.h │ │ ├── cef_xml_reader.h │ │ ├── cef_zip_reader.h │ │ ├── internal │ │ │ ├── cef_export.h │ │ │ ├── cef_linux.h │ │ │ ├── cef_logging_internal.h │ │ │ ├── cef_mac.h │ │ │ ├── cef_ptr.h │ │ │ ├── cef_string.h │ │ │ ├── cef_string_list.h │ │ │ ├── cef_string_map.h │ │ │ ├── cef_string_multimap.h │ │ │ ├── cef_string_types.h │ │ │ ├── cef_string_wrappers.h │ │ │ ├── cef_thread_internal.h │ │ │ ├── cef_time.h │ │ │ ├── cef_trace_event_internal.h │ │ │ ├── cef_types.h │ │ │ ├── cef_types_linux.h │ │ │ ├── cef_types_mac.h │ │ │ ├── cef_types_win.h │ │ │ ├── cef_types_wrappers.h │ │ │ └── cef_win.h │ │ ├── test │ │ │ ├── cef_test_helpers.h │ │ │ └── cef_translator_test.h │ │ ├── views │ │ │ ├── cef_box_layout.h │ │ │ ├── cef_browser_view.h │ │ │ ├── cef_browser_view_delegate.h │ │ │ ├── cef_button.h │ │ │ ├── cef_button_delegate.h │ │ │ ├── cef_display.h │ │ │ ├── cef_fill_layout.h │ │ │ ├── cef_label_button.h │ │ │ ├── cef_layout.h │ │ │ ├── cef_menu_button.h │ │ │ ├── cef_menu_button_delegate.h │ │ │ ├── cef_panel.h │ │ │ ├── cef_panel_delegate.h │ │ │ ├── cef_scroll_view.h │ │ │ ├── cef_textfield.h │ │ │ ├── cef_textfield_delegate.h │ │ │ ├── cef_view.h │ │ │ ├── cef_view_delegate.h │ │ │ ├── cef_window.h │ │ │ └── cef_window_delegate.h │ │ └── wrapper │ │ │ ├── cef_byte_read_handler.h │ │ │ ├── cef_closure_task.h │ │ │ ├── cef_helpers.h │ │ │ ├── cef_library_loader.h │ │ │ ├── cef_message_router.h │ │ │ ├── cef_resource_manager.h │ │ │ ├── cef_scoped_temp_dir.h │ │ │ ├── cef_stream_resource_handler.h │ │ │ ├── cef_xml_object.h │ │ │ └── cef_zip_archive.h │ ├── libcef_dll │ │ ├── base │ │ │ ├── cef_atomicops_x86_gcc.cc │ │ │ ├── cef_bind_helpers.cc │ │ │ ├── cef_callback_helpers.cc │ │ │ ├── cef_callback_internal.cc │ │ │ ├── cef_lock.cc │ │ │ ├── cef_lock_impl.cc │ │ │ ├── cef_logging.cc │ │ │ ├── cef_ref_counted.cc │ │ │ ├── cef_string16.cc │ │ │ ├── cef_thread_checker_impl.cc │ │ │ └── cef_weak_ptr.cc │ │ ├── cpptoc │ │ │ ├── accessibility_handler_cpptoc.cc │ │ │ ├── accessibility_handler_cpptoc.h │ │ │ ├── app_cpptoc.cc │ │ │ ├── app_cpptoc.h │ │ │ ├── audio_handler_cpptoc.cc │ │ │ ├── audio_handler_cpptoc.h │ │ │ ├── base_ref_counted_cpptoc.cc │ │ │ ├── base_ref_counted_cpptoc.h │ │ │ ├── base_scoped_cpptoc.cc │ │ │ ├── base_scoped_cpptoc.h │ │ │ ├── browser_process_handler_cpptoc.cc │ │ │ ├── browser_process_handler_cpptoc.h │ │ │ ├── client_cpptoc.cc │ │ │ ├── client_cpptoc.h │ │ │ ├── completion_callback_cpptoc.cc │ │ │ ├── completion_callback_cpptoc.h │ │ │ ├── context_menu_handler_cpptoc.cc │ │ │ ├── context_menu_handler_cpptoc.h │ │ │ ├── cookie_access_filter_cpptoc.cc │ │ │ ├── cookie_access_filter_cpptoc.h │ │ │ ├── cookie_visitor_cpptoc.cc │ │ │ ├── cookie_visitor_cpptoc.h │ │ │ ├── cpptoc_ref_counted.h │ │ │ ├── cpptoc_scoped.h │ │ │ ├── delete_cookies_callback_cpptoc.cc │ │ │ ├── delete_cookies_callback_cpptoc.h │ │ │ ├── dialog_handler_cpptoc.cc │ │ │ ├── dialog_handler_cpptoc.h │ │ │ ├── display_handler_cpptoc.cc │ │ │ ├── display_handler_cpptoc.h │ │ │ ├── domvisitor_cpptoc.cc │ │ │ ├── domvisitor_cpptoc.h │ │ │ ├── download_handler_cpptoc.cc │ │ │ ├── download_handler_cpptoc.h │ │ │ ├── download_image_callback_cpptoc.cc │ │ │ ├── download_image_callback_cpptoc.h │ │ │ ├── drag_handler_cpptoc.cc │ │ │ ├── drag_handler_cpptoc.h │ │ │ ├── end_tracing_callback_cpptoc.cc │ │ │ ├── end_tracing_callback_cpptoc.h │ │ │ ├── extension_handler_cpptoc.cc │ │ │ ├── extension_handler_cpptoc.h │ │ │ ├── find_handler_cpptoc.cc │ │ │ ├── find_handler_cpptoc.h │ │ │ ├── focus_handler_cpptoc.cc │ │ │ ├── focus_handler_cpptoc.h │ │ │ ├── jsdialog_handler_cpptoc.cc │ │ │ ├── jsdialog_handler_cpptoc.h │ │ │ ├── keyboard_handler_cpptoc.cc │ │ │ ├── keyboard_handler_cpptoc.h │ │ │ ├── life_span_handler_cpptoc.cc │ │ │ ├── life_span_handler_cpptoc.h │ │ │ ├── load_handler_cpptoc.cc │ │ │ ├── load_handler_cpptoc.h │ │ │ ├── menu_model_delegate_cpptoc.cc │ │ │ ├── menu_model_delegate_cpptoc.h │ │ │ ├── navigation_entry_visitor_cpptoc.cc │ │ │ ├── navigation_entry_visitor_cpptoc.h │ │ │ ├── pdf_print_callback_cpptoc.cc │ │ │ ├── pdf_print_callback_cpptoc.h │ │ │ ├── print_handler_cpptoc.cc │ │ │ ├── print_handler_cpptoc.h │ │ │ ├── read_handler_cpptoc.cc │ │ │ ├── read_handler_cpptoc.h │ │ │ ├── register_cdm_callback_cpptoc.cc │ │ │ ├── register_cdm_callback_cpptoc.h │ │ │ ├── render_handler_cpptoc.cc │ │ │ ├── render_handler_cpptoc.h │ │ │ ├── render_process_handler_cpptoc.cc │ │ │ ├── render_process_handler_cpptoc.h │ │ │ ├── request_context_handler_cpptoc.cc │ │ │ ├── request_context_handler_cpptoc.h │ │ │ ├── request_handler_cpptoc.cc │ │ │ ├── request_handler_cpptoc.h │ │ │ ├── resolve_callback_cpptoc.cc │ │ │ ├── resolve_callback_cpptoc.h │ │ │ ├── resource_bundle_handler_cpptoc.cc │ │ │ ├── resource_bundle_handler_cpptoc.h │ │ │ ├── resource_handler_cpptoc.cc │ │ │ ├── resource_handler_cpptoc.h │ │ │ ├── resource_request_handler_cpptoc.cc │ │ │ ├── resource_request_handler_cpptoc.h │ │ │ ├── response_filter_cpptoc.cc │ │ │ ├── response_filter_cpptoc.h │ │ │ ├── run_file_dialog_callback_cpptoc.cc │ │ │ ├── run_file_dialog_callback_cpptoc.h │ │ │ ├── scheme_handler_factory_cpptoc.cc │ │ │ ├── scheme_handler_factory_cpptoc.h │ │ │ ├── server_handler_cpptoc.cc │ │ │ ├── server_handler_cpptoc.h │ │ │ ├── set_cookie_callback_cpptoc.cc │ │ │ ├── set_cookie_callback_cpptoc.h │ │ │ ├── string_visitor_cpptoc.cc │ │ │ ├── string_visitor_cpptoc.h │ │ │ ├── task_cpptoc.cc │ │ │ ├── task_cpptoc.h │ │ │ ├── urlrequest_client_cpptoc.cc │ │ │ ├── urlrequest_client_cpptoc.h │ │ │ ├── v8accessor_cpptoc.cc │ │ │ ├── v8accessor_cpptoc.h │ │ │ ├── v8array_buffer_release_callback_cpptoc.cc │ │ │ ├── v8array_buffer_release_callback_cpptoc.h │ │ │ ├── v8handler_cpptoc.cc │ │ │ ├── v8handler_cpptoc.h │ │ │ ├── v8interceptor_cpptoc.cc │ │ │ ├── v8interceptor_cpptoc.h │ │ │ ├── views │ │ │ │ ├── browser_view_delegate_cpptoc.cc │ │ │ │ ├── browser_view_delegate_cpptoc.h │ │ │ │ ├── button_delegate_cpptoc.cc │ │ │ │ ├── button_delegate_cpptoc.h │ │ │ │ ├── menu_button_delegate_cpptoc.cc │ │ │ │ ├── menu_button_delegate_cpptoc.h │ │ │ │ ├── panel_delegate_cpptoc.cc │ │ │ │ ├── panel_delegate_cpptoc.h │ │ │ │ ├── textfield_delegate_cpptoc.cc │ │ │ │ ├── textfield_delegate_cpptoc.h │ │ │ │ ├── view_delegate_cpptoc.cc │ │ │ │ ├── view_delegate_cpptoc.h │ │ │ │ ├── window_delegate_cpptoc.cc │ │ │ │ └── window_delegate_cpptoc.h │ │ │ ├── web_plugin_info_visitor_cpptoc.cc │ │ │ ├── web_plugin_info_visitor_cpptoc.h │ │ │ ├── web_plugin_unstable_callback_cpptoc.cc │ │ │ ├── web_plugin_unstable_callback_cpptoc.h │ │ │ ├── write_handler_cpptoc.cc │ │ │ └── write_handler_cpptoc.h │ │ ├── ctocpp │ │ │ ├── auth_callback_ctocpp.cc │ │ │ ├── auth_callback_ctocpp.h │ │ │ ├── before_download_callback_ctocpp.cc │ │ │ ├── before_download_callback_ctocpp.h │ │ │ ├── binary_value_ctocpp.cc │ │ │ ├── binary_value_ctocpp.h │ │ │ ├── browser_ctocpp.cc │ │ │ ├── browser_ctocpp.h │ │ │ ├── browser_host_ctocpp.cc │ │ │ ├── browser_host_ctocpp.h │ │ │ ├── callback_ctocpp.cc │ │ │ ├── callback_ctocpp.h │ │ │ ├── command_line_ctocpp.cc │ │ │ ├── command_line_ctocpp.h │ │ │ ├── context_menu_params_ctocpp.cc │ │ │ ├── context_menu_params_ctocpp.h │ │ │ ├── cookie_manager_ctocpp.cc │ │ │ ├── cookie_manager_ctocpp.h │ │ │ ├── ctocpp_ref_counted.h │ │ │ ├── ctocpp_scoped.h │ │ │ ├── dictionary_value_ctocpp.cc │ │ │ ├── dictionary_value_ctocpp.h │ │ │ ├── domdocument_ctocpp.cc │ │ │ ├── domdocument_ctocpp.h │ │ │ ├── domnode_ctocpp.cc │ │ │ ├── domnode_ctocpp.h │ │ │ ├── download_item_callback_ctocpp.cc │ │ │ ├── download_item_callback_ctocpp.h │ │ │ ├── download_item_ctocpp.cc │ │ │ ├── download_item_ctocpp.h │ │ │ ├── drag_data_ctocpp.cc │ │ │ ├── drag_data_ctocpp.h │ │ │ ├── extension_ctocpp.cc │ │ │ ├── extension_ctocpp.h │ │ │ ├── file_dialog_callback_ctocpp.cc │ │ │ ├── file_dialog_callback_ctocpp.h │ │ │ ├── frame_ctocpp.cc │ │ │ ├── frame_ctocpp.h │ │ │ ├── get_extension_resource_callback_ctocpp.cc │ │ │ ├── get_extension_resource_callback_ctocpp.h │ │ │ ├── image_ctocpp.cc │ │ │ ├── image_ctocpp.h │ │ │ ├── jsdialog_callback_ctocpp.cc │ │ │ ├── jsdialog_callback_ctocpp.h │ │ │ ├── list_value_ctocpp.cc │ │ │ ├── list_value_ctocpp.h │ │ │ ├── menu_model_ctocpp.cc │ │ │ ├── menu_model_ctocpp.h │ │ │ ├── navigation_entry_ctocpp.cc │ │ │ ├── navigation_entry_ctocpp.h │ │ │ ├── post_data_ctocpp.cc │ │ │ ├── post_data_ctocpp.h │ │ │ ├── post_data_element_ctocpp.cc │ │ │ ├── post_data_element_ctocpp.h │ │ │ ├── print_dialog_callback_ctocpp.cc │ │ │ ├── print_dialog_callback_ctocpp.h │ │ │ ├── print_job_callback_ctocpp.cc │ │ │ ├── print_job_callback_ctocpp.h │ │ │ ├── print_settings_ctocpp.cc │ │ │ ├── print_settings_ctocpp.h │ │ │ ├── process_message_ctocpp.cc │ │ │ ├── process_message_ctocpp.h │ │ │ ├── request_callback_ctocpp.cc │ │ │ ├── request_callback_ctocpp.h │ │ │ ├── request_context_ctocpp.cc │ │ │ ├── request_context_ctocpp.h │ │ │ ├── request_ctocpp.cc │ │ │ ├── request_ctocpp.h │ │ │ ├── resource_bundle_ctocpp.cc │ │ │ ├── resource_bundle_ctocpp.h │ │ │ ├── resource_read_callback_ctocpp.cc │ │ │ ├── resource_read_callback_ctocpp.h │ │ │ ├── resource_skip_callback_ctocpp.cc │ │ │ ├── resource_skip_callback_ctocpp.h │ │ │ ├── response_ctocpp.cc │ │ │ ├── response_ctocpp.h │ │ │ ├── run_context_menu_callback_ctocpp.cc │ │ │ ├── run_context_menu_callback_ctocpp.h │ │ │ ├── scheme_registrar_ctocpp.cc │ │ │ ├── scheme_registrar_ctocpp.h │ │ │ ├── select_client_certificate_callback_ctocpp.cc │ │ │ ├── select_client_certificate_callback_ctocpp.h │ │ │ ├── server_ctocpp.cc │ │ │ ├── server_ctocpp.h │ │ │ ├── sslinfo_ctocpp.cc │ │ │ ├── sslinfo_ctocpp.h │ │ │ ├── sslstatus_ctocpp.cc │ │ │ ├── sslstatus_ctocpp.h │ │ │ ├── stream_reader_ctocpp.cc │ │ │ ├── stream_reader_ctocpp.h │ │ │ ├── stream_writer_ctocpp.cc │ │ │ ├── stream_writer_ctocpp.h │ │ │ ├── task_runner_ctocpp.cc │ │ │ ├── task_runner_ctocpp.h │ │ │ ├── thread_ctocpp.cc │ │ │ ├── thread_ctocpp.h │ │ │ ├── urlrequest_ctocpp.cc │ │ │ ├── urlrequest_ctocpp.h │ │ │ ├── v8context_ctocpp.cc │ │ │ ├── v8context_ctocpp.h │ │ │ ├── v8exception_ctocpp.cc │ │ │ ├── v8exception_ctocpp.h │ │ │ ├── v8stack_frame_ctocpp.cc │ │ │ ├── v8stack_frame_ctocpp.h │ │ │ ├── v8stack_trace_ctocpp.cc │ │ │ ├── v8stack_trace_ctocpp.h │ │ │ ├── v8value_ctocpp.cc │ │ │ ├── v8value_ctocpp.h │ │ │ ├── value_ctocpp.cc │ │ │ ├── value_ctocpp.h │ │ │ ├── views │ │ │ │ ├── box_layout_ctocpp.cc │ │ │ │ ├── box_layout_ctocpp.h │ │ │ │ ├── browser_view_ctocpp.cc │ │ │ │ ├── browser_view_ctocpp.h │ │ │ │ ├── button_ctocpp.cc │ │ │ │ ├── button_ctocpp.h │ │ │ │ ├── display_ctocpp.cc │ │ │ │ ├── display_ctocpp.h │ │ │ │ ├── fill_layout_ctocpp.cc │ │ │ │ ├── fill_layout_ctocpp.h │ │ │ │ ├── label_button_ctocpp.cc │ │ │ │ ├── label_button_ctocpp.h │ │ │ │ ├── layout_ctocpp.cc │ │ │ │ ├── layout_ctocpp.h │ │ │ │ ├── menu_button_ctocpp.cc │ │ │ │ ├── menu_button_ctocpp.h │ │ │ │ ├── menu_button_pressed_lock_ctocpp.cc │ │ │ │ ├── menu_button_pressed_lock_ctocpp.h │ │ │ │ ├── panel_ctocpp.cc │ │ │ │ ├── panel_ctocpp.h │ │ │ │ ├── scroll_view_ctocpp.cc │ │ │ │ ├── scroll_view_ctocpp.h │ │ │ │ ├── textfield_ctocpp.cc │ │ │ │ ├── textfield_ctocpp.h │ │ │ │ ├── view_ctocpp.cc │ │ │ │ ├── view_ctocpp.h │ │ │ │ ├── window_ctocpp.cc │ │ │ │ └── window_ctocpp.h │ │ │ ├── waitable_event_ctocpp.cc │ │ │ ├── waitable_event_ctocpp.h │ │ │ ├── web_plugin_info_ctocpp.cc │ │ │ ├── web_plugin_info_ctocpp.h │ │ │ ├── x509cert_principal_ctocpp.cc │ │ │ ├── x509cert_principal_ctocpp.h │ │ │ ├── x509certificate_ctocpp.cc │ │ │ ├── x509certificate_ctocpp.h │ │ │ ├── xml_reader_ctocpp.cc │ │ │ ├── xml_reader_ctocpp.h │ │ │ ├── zip_reader_ctocpp.cc │ │ │ └── zip_reader_ctocpp.h │ │ ├── ptr_util.h │ │ ├── shutdown_checker.cc │ │ ├── shutdown_checker.h │ │ ├── transfer_util.cc │ │ ├── transfer_util.h │ │ ├── wrapper │ │ │ ├── cef_browser_info_map.h │ │ │ ├── cef_byte_read_handler.cc │ │ │ ├── cef_closure_task.cc │ │ │ ├── cef_library_loader_mac.mm │ │ │ ├── cef_message_router.cc │ │ │ ├── cef_resource_manager.cc │ │ │ ├── cef_scoped_temp_dir.cc │ │ │ ├── cef_stream_resource_handler.cc │ │ │ ├── cef_xml_object.cc │ │ │ ├── cef_zip_archive.cc │ │ │ ├── libcef_dll_dylib.cc │ │ │ ├── libcef_dll_wrapper.cc │ │ │ └── libcef_dll_wrapper2.cc │ │ └── wrapper_types.h │ └── libcef_slib.h │ ├── libjpeg │ ├── README │ ├── cderror.h │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ └── libjpeg_slib.h │ ├── libpng │ ├── LICENSE │ ├── README │ ├── arm │ │ ├── arm_init.c │ │ ├── filter_neon.S │ │ └── filter_neon_intrinsics.c │ ├── contrib │ │ ├── arm-neon │ │ │ ├── README │ │ │ ├── android-ndk.c │ │ │ ├── linux-auxv.c │ │ │ └── linux.c │ │ ├── mips-msa │ │ │ ├── README │ │ │ └── linux.c │ │ └── powerpc-vsx │ │ │ ├── README │ │ │ ├── linux.c │ │ │ └── linux_aux.c │ ├── intel │ │ ├── filter_sse2_intrinsics.c │ │ └── intel_init.c │ ├── mips │ │ ├── filter_msa_intrinsics.c │ │ └── mips_init.c │ ├── png.c │ ├── png.h │ ├── png_slib.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ └── powerpc │ │ ├── filter_vsx_intrinsics.c │ │ └── powerpc_init.c │ ├── libvpx │ ├── build │ │ └── make │ │ │ ├── ads2gas.pl │ │ │ ├── ads2gas_apple.pl │ │ │ ├── rtcd.pl │ │ │ └── thumb.pm │ ├── gen │ │ ├── asm │ │ │ ├── armv7 │ │ │ │ ├── vpx_config.asm │ │ │ │ ├── vpx_config_common.S │ │ │ │ └── vpx_dsp │ │ │ │ │ └── arm │ │ │ │ │ ├── idct4x4_1_add_neon.asm.S │ │ │ │ │ ├── idct4x4_add_neon.asm.S │ │ │ │ │ ├── idct_neon.asm.S │ │ │ │ │ ├── intrapred_neon_asm.asm.S │ │ │ │ │ ├── loopfilter_16_neon.asm.S │ │ │ │ │ ├── loopfilter_4_neon.asm.S │ │ │ │ │ ├── loopfilter_8_neon.asm.S │ │ │ │ │ ├── save_reg_neon.asm.S │ │ │ │ │ ├── vpx_convolve8_avg_neon_asm.asm.S │ │ │ │ │ ├── vpx_convolve8_neon_asm.asm.S │ │ │ │ │ ├── vpx_convolve_avg_neon_asm.asm.S │ │ │ │ │ └── vpx_convolve_copy_neon_asm.asm.S │ │ │ ├── i386 │ │ │ │ └── vpx_config.asm │ │ │ └── x86_64 │ │ │ │ └── vpx_config.asm │ │ ├── asm_apple │ │ │ └── armv7 │ │ │ │ ├── vpx_config.asm │ │ │ │ ├── vpx_config_common.S │ │ │ │ └── vpx_dsp │ │ │ │ └── arm │ │ │ │ ├── idct4x4_1_add_neon.asm.S │ │ │ │ ├── idct4x4_add_neon.asm.S │ │ │ │ ├── idct_neon.asm.S │ │ │ │ ├── intrapred_neon_asm.asm.S │ │ │ │ ├── loopfilter_16_neon.asm.S │ │ │ │ ├── loopfilter_4_neon.asm.S │ │ │ │ ├── loopfilter_8_neon.asm.S │ │ │ │ ├── save_reg_neon.asm.S │ │ │ │ ├── vpx_convolve8_avg_neon_asm.asm.S │ │ │ │ ├── vpx_convolve8_neon_asm.asm.S │ │ │ │ ├── vpx_convolve_avg_neon_asm.asm.S │ │ │ │ └── vpx_convolve_copy_neon_asm.asm.S │ │ └── rtcd │ │ │ ├── arm64 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ │ │ ├── armv7 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ │ │ ├── x86 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ │ │ └── x86_64 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ ├── generate-asm.sh │ ├── generate-rtcd.config │ ├── generate-rtcd.sh │ ├── third_party │ │ └── x86inc │ │ │ ├── LICENSE │ │ │ ├── README.libvpx │ │ │ └── x86inc.asm │ ├── vp8 │ │ ├── common │ │ │ ├── alloccommon.c │ │ │ ├── alloccommon.h │ │ │ ├── arm │ │ │ │ ├── loopfilter_arm.c │ │ │ │ └── neon │ │ │ │ │ ├── bilinearpredict_neon.c │ │ │ │ │ ├── copymem_neon.c │ │ │ │ │ ├── dc_only_idct_add_neon.c │ │ │ │ │ ├── dequant_idct_neon.c │ │ │ │ │ ├── dequantizeb_neon.c │ │ │ │ │ ├── idct_blk_neon.c │ │ │ │ │ ├── idct_dequant_0_2x_neon.c │ │ │ │ │ ├── idct_dequant_full_2x_neon.c │ │ │ │ │ ├── iwalsh_neon.c │ │ │ │ │ ├── loopfiltersimplehorizontaledge_neon.c │ │ │ │ │ ├── loopfiltersimpleverticaledge_neon.c │ │ │ │ │ ├── mbloopfilter_neon.c │ │ │ │ │ ├── shortidct4x4llm_neon.c │ │ │ │ │ ├── sixtappredict_neon.c │ │ │ │ │ └── vp8_loopfilter_neon.c │ │ │ ├── blockd.c │ │ │ ├── blockd.h │ │ │ ├── coefupdateprobs.h │ │ │ ├── common.h │ │ │ ├── context.c │ │ │ ├── copy_c.c │ │ │ ├── debugmodes.c │ │ │ ├── default_coef_probs.h │ │ │ ├── dequantize.c │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── entropymode.c │ │ │ ├── entropymode.h │ │ │ ├── entropymv.c │ │ │ ├── entropymv.h │ │ │ ├── extend.c │ │ │ ├── extend.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── findnearmv.c │ │ │ ├── findnearmv.h │ │ │ ├── generic │ │ │ │ └── systemdependent.c │ │ │ ├── header.h │ │ │ ├── idct_blk.c │ │ │ ├── idctllm.c │ │ │ ├── invtrans.h │ │ │ ├── loopfilter.h │ │ │ ├── loopfilter_filters.c │ │ │ ├── mbpitch.c │ │ │ ├── mfqe.c │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── dequantize_dspr2.c │ │ │ │ │ ├── filter_dspr2.c │ │ │ │ │ ├── idct_blk_dspr2.c │ │ │ │ │ ├── idctllm_dspr2.c │ │ │ │ │ ├── reconinter_dspr2.c │ │ │ │ │ └── vp8_loopfilter_filters_dspr2.c │ │ │ │ ├── mmi │ │ │ │ │ ├── copymem_mmi.c │ │ │ │ │ ├── dequantize_mmi.c │ │ │ │ │ ├── idct_blk_mmi.c │ │ │ │ │ ├── idctllm_mmi.c │ │ │ │ │ ├── loopfilter_filters_mmi.c │ │ │ │ │ └── sixtap_filter_mmi.c │ │ │ │ └── msa │ │ │ │ │ ├── bilinear_filter_msa.c │ │ │ │ │ ├── copymem_msa.c │ │ │ │ │ ├── idct_msa.c │ │ │ │ │ ├── loopfilter_filters_msa.c │ │ │ │ │ ├── mfqe_msa.c │ │ │ │ │ ├── sixtap_filter_msa.c │ │ │ │ │ └── vp8_macros_msa.h │ │ │ ├── modecont.c │ │ │ ├── modecont.h │ │ │ ├── mv.h │ │ │ ├── onyx.h │ │ │ ├── onyxc_int.h │ │ │ ├── onyxd.h │ │ │ ├── postproc.c │ │ │ ├── postproc.h │ │ │ ├── ppflags.h │ │ │ ├── quant_common.c │ │ │ ├── quant_common.h │ │ │ ├── reconinter.c │ │ │ ├── reconinter.h │ │ │ ├── reconintra.c │ │ │ ├── reconintra.h │ │ │ ├── reconintra4x4.c │ │ │ ├── reconintra4x4.h │ │ │ ├── rtcd.c │ │ │ ├── rtcd_defs.pl │ │ │ ├── setupintrarecon.c │ │ │ ├── setupintrarecon.h │ │ │ ├── swapyv12buffer.c │ │ │ ├── swapyv12buffer.h │ │ │ ├── systemdependent.h │ │ │ ├── threading.h │ │ │ ├── treecoder.c │ │ │ ├── treecoder.h │ │ │ ├── vp8_entropymodedata.h │ │ │ ├── vp8_loopfilter.c │ │ │ ├── vp8_skin_detection.c │ │ │ ├── vp8_skin_detection.h │ │ │ └── x86 │ │ │ │ ├── copy_sse2.asm │ │ │ │ ├── copy_sse3.asm │ │ │ │ ├── dequantize_mmx.asm │ │ │ │ ├── filter_x86.c │ │ │ │ ├── filter_x86.h │ │ │ │ ├── idct_blk_mmx.c │ │ │ │ ├── idct_blk_sse2.c │ │ │ │ ├── idctllm_mmx.asm │ │ │ │ ├── idctllm_sse2.asm │ │ │ │ ├── iwalsh_sse2.asm │ │ │ │ ├── loopfilter_block_sse2_x86_64.asm │ │ │ │ ├── loopfilter_sse2.asm │ │ │ │ ├── loopfilter_x86.c │ │ │ │ ├── mfqe_sse2.asm │ │ │ │ ├── recon_mmx.asm │ │ │ │ ├── recon_sse2.asm │ │ │ │ ├── subpixel_mmx.asm │ │ │ │ ├── subpixel_sse2.asm │ │ │ │ ├── subpixel_ssse3.asm │ │ │ │ └── vp8_asm_stubs.c │ │ ├── decoder │ │ │ ├── dboolhuff.c │ │ │ ├── dboolhuff.h │ │ │ ├── decodeframe.c │ │ │ ├── decodemv.c │ │ │ ├── decodemv.h │ │ │ ├── decoderthreading.h │ │ │ ├── detokenize.c │ │ │ ├── detokenize.h │ │ │ ├── ec_types.h │ │ │ ├── error_concealment.c │ │ │ ├── error_concealment.h │ │ │ ├── onyxd_if.c │ │ │ ├── onyxd_int.h │ │ │ ├── threading.c │ │ │ └── treereader.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── denoising_neon.c │ │ │ │ │ ├── fastquantizeb_neon.c │ │ │ │ │ ├── shortfdct_neon.c │ │ │ │ │ └── vp8_shortwalsh4x4_neon.c │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── block.h │ │ │ ├── boolhuff.c │ │ │ ├── boolhuff.h │ │ │ ├── dct.c │ │ │ ├── dct_value_cost.h │ │ │ ├── dct_value_tokens.h │ │ │ ├── defaultcoefcounts.h │ │ │ ├── denoising.c │ │ │ ├── denoising.h │ │ │ ├── encodeframe.c │ │ │ ├── encodeframe.h │ │ │ ├── encodeintra.c │ │ │ ├── encodeintra.h │ │ │ ├── encodemb.c │ │ │ ├── encodemb.h │ │ │ ├── encodemv.c │ │ │ ├── encodemv.h │ │ │ ├── ethreading.c │ │ │ ├── ethreading.h │ │ │ ├── firstpass.c │ │ │ ├── firstpass.h │ │ │ ├── lookahead.c │ │ │ ├── lookahead.h │ │ │ ├── mcomp.c │ │ │ ├── mcomp.h │ │ │ ├── mips │ │ │ │ ├── mmi │ │ │ │ │ ├── dct_mmi.c │ │ │ │ │ └── vp8_quantize_mmi.c │ │ │ │ └── msa │ │ │ │ │ ├── dct_msa.c │ │ │ │ │ ├── denoising_msa.c │ │ │ │ │ ├── encodeopt_msa.c │ │ │ │ │ ├── quantize_msa.c │ │ │ │ │ └── temporal_filter_msa.c │ │ │ ├── modecosts.c │ │ │ ├── modecosts.h │ │ │ ├── mr_dissim.c │ │ │ ├── mr_dissim.h │ │ │ ├── onyx_if.c │ │ │ ├── onyx_int.h │ │ │ ├── pickinter.c │ │ │ ├── pickinter.h │ │ │ ├── picklpf.c │ │ │ ├── picklpf.h │ │ │ ├── quantize.h │ │ │ ├── ratectrl.c │ │ │ ├── ratectrl.h │ │ │ ├── rdopt.c │ │ │ ├── rdopt.h │ │ │ ├── segmentation.c │ │ │ ├── segmentation.h │ │ │ ├── temporal_filter.c │ │ │ ├── temporal_filter.h │ │ │ ├── tokenize.c │ │ │ ├── tokenize.h │ │ │ ├── treewriter.c │ │ │ ├── treewriter.h │ │ │ ├── vp8_quantize.c │ │ │ └── x86 │ │ │ │ ├── dct_sse2.asm │ │ │ │ ├── denoising_sse2.c │ │ │ │ ├── encodeopt.asm │ │ │ │ ├── fwalsh_sse2.asm │ │ │ │ ├── quantize_sse4.c │ │ │ │ ├── temporal_filter_apply_sse2.asm │ │ │ │ ├── vp8_enc_stubs_sse2.c │ │ │ │ ├── vp8_quantize_sse2.c │ │ │ │ └── vp8_quantize_ssse3.c │ │ ├── vp8_cx_iface.c │ │ └── vp8_dx_iface.c │ ├── vp8_rtcd.h │ ├── vp9 │ │ ├── common │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_iht4x4_add_neon.c │ │ │ │ │ └── vp9_iht8x8_add_neon.c │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── vp9_itrans16_dspr2.c │ │ │ │ │ ├── vp9_itrans4_dspr2.c │ │ │ │ │ └── vp9_itrans8_dspr2.c │ │ │ │ └── msa │ │ │ │ │ ├── vp9_idct16x16_msa.c │ │ │ │ │ ├── vp9_idct4x4_msa.c │ │ │ │ │ ├── vp9_idct8x8_msa.c │ │ │ │ │ └── vp9_mfqe_msa.c │ │ │ ├── vp9_alloccommon.c │ │ │ ├── vp9_alloccommon.h │ │ │ ├── vp9_blockd.c │ │ │ ├── vp9_blockd.h │ │ │ ├── vp9_common.h │ │ │ ├── vp9_common_data.c │ │ │ ├── vp9_common_data.h │ │ │ ├── vp9_debugmodes.c │ │ │ ├── vp9_entropy.c │ │ │ ├── vp9_entropy.h │ │ │ ├── vp9_entropymode.c │ │ │ ├── vp9_entropymode.h │ │ │ ├── vp9_entropymv.c │ │ │ ├── vp9_entropymv.h │ │ │ ├── vp9_enums.h │ │ │ ├── vp9_filter.c │ │ │ ├── vp9_filter.h │ │ │ ├── vp9_frame_buffers.c │ │ │ ├── vp9_frame_buffers.h │ │ │ ├── vp9_idct.c │ │ │ ├── vp9_idct.h │ │ │ ├── vp9_loopfilter.c │ │ │ ├── vp9_loopfilter.h │ │ │ ├── vp9_mfqe.c │ │ │ ├── vp9_mfqe.h │ │ │ ├── vp9_mv.h │ │ │ ├── vp9_mvref_common.c │ │ │ ├── vp9_mvref_common.h │ │ │ ├── vp9_onyxc_int.h │ │ │ ├── vp9_postproc.c │ │ │ ├── vp9_postproc.h │ │ │ ├── vp9_ppflags.h │ │ │ ├── vp9_pred_common.c │ │ │ ├── vp9_pred_common.h │ │ │ ├── vp9_quant_common.c │ │ │ ├── vp9_quant_common.h │ │ │ ├── vp9_reconinter.c │ │ │ ├── vp9_reconinter.h │ │ │ ├── vp9_reconintra.c │ │ │ ├── vp9_reconintra.h │ │ │ ├── vp9_rtcd.c │ │ │ ├── vp9_rtcd_defs.pl │ │ │ ├── vp9_scale.c │ │ │ ├── vp9_scale.h │ │ │ ├── vp9_scan.c │ │ │ ├── vp9_scan.h │ │ │ ├── vp9_seg_common.c │ │ │ ├── vp9_seg_common.h │ │ │ ├── vp9_thread_common.c │ │ │ ├── vp9_thread_common.h │ │ │ ├── vp9_tile_common.c │ │ │ ├── vp9_tile_common.h │ │ │ └── x86 │ │ │ │ ├── vp9_idct_intrin_sse2.c │ │ │ │ └── vp9_mfqe_sse2.asm │ │ ├── decoder │ │ │ ├── vp9_decodeframe.c │ │ │ ├── vp9_decodeframe.h │ │ │ ├── vp9_decodemv.c │ │ │ ├── vp9_decodemv.h │ │ │ ├── vp9_decoder.c │ │ │ ├── vp9_decoder.h │ │ │ ├── vp9_detokenize.c │ │ │ ├── vp9_detokenize.h │ │ │ ├── vp9_dsubexp.c │ │ │ └── vp9_dsubexp.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_dct_neon.c │ │ │ │ │ ├── vp9_denoiser_neon.c │ │ │ │ │ ├── vp9_error_neon.c │ │ │ │ │ ├── vp9_frame_scale_neon.c │ │ │ │ │ └── vp9_quantize_neon.c │ │ │ ├── mips │ │ │ │ └── msa │ │ │ │ │ ├── vp9_error_msa.c │ │ │ │ │ ├── vp9_fdct16x16_msa.c │ │ │ │ │ ├── vp9_fdct4x4_msa.c │ │ │ │ │ ├── vp9_fdct8x8_msa.c │ │ │ │ │ └── vp9_fdct_msa.h │ │ │ ├── vp9_alt_ref_aq.c │ │ │ ├── vp9_alt_ref_aq.h │ │ │ ├── vp9_aq_360.c │ │ │ ├── vp9_aq_360.h │ │ │ ├── vp9_aq_complexity.c │ │ │ ├── vp9_aq_complexity.h │ │ │ ├── vp9_aq_cyclicrefresh.c │ │ │ ├── vp9_aq_cyclicrefresh.h │ │ │ ├── vp9_aq_variance.c │ │ │ ├── vp9_aq_variance.h │ │ │ ├── vp9_bitstream.c │ │ │ ├── vp9_bitstream.h │ │ │ ├── vp9_block.h │ │ │ ├── vp9_blockiness.c │ │ │ ├── vp9_context_tree.c │ │ │ ├── vp9_context_tree.h │ │ │ ├── vp9_cost.c │ │ │ ├── vp9_cost.h │ │ │ ├── vp9_dct.c │ │ │ ├── vp9_denoiser.c │ │ │ ├── vp9_denoiser.h │ │ │ ├── vp9_encodeframe.c │ │ │ ├── vp9_encodeframe.h │ │ │ ├── vp9_encodemb.c │ │ │ ├── vp9_encodemb.h │ │ │ ├── vp9_encodemv.c │ │ │ ├── vp9_encodemv.h │ │ │ ├── vp9_encoder.c │ │ │ ├── vp9_encoder.h │ │ │ ├── vp9_ethread.c │ │ │ ├── vp9_ethread.h │ │ │ ├── vp9_extend.c │ │ │ ├── vp9_extend.h │ │ │ ├── vp9_firstpass.c │ │ │ ├── vp9_firstpass.h │ │ │ ├── vp9_frame_scale.c │ │ │ ├── vp9_job_queue.h │ │ │ ├── vp9_lookahead.c │ │ │ ├── vp9_lookahead.h │ │ │ ├── vp9_mbgraph.c │ │ │ ├── vp9_mbgraph.h │ │ │ ├── vp9_mcomp.c │ │ │ ├── vp9_mcomp.h │ │ │ ├── vp9_multi_thread.c │ │ │ ├── vp9_multi_thread.h │ │ │ ├── vp9_noise_estimate.c │ │ │ ├── vp9_noise_estimate.h │ │ │ ├── vp9_picklpf.c │ │ │ ├── vp9_picklpf.h │ │ │ ├── vp9_pickmode.c │ │ │ ├── vp9_pickmode.h │ │ │ ├── vp9_quantize.c │ │ │ ├── vp9_quantize.h │ │ │ ├── vp9_ratectrl.c │ │ │ ├── vp9_ratectrl.h │ │ │ ├── vp9_rd.c │ │ │ ├── vp9_rd.h │ │ │ ├── vp9_rdopt.c │ │ │ ├── vp9_rdopt.h │ │ │ ├── vp9_resize.c │ │ │ ├── vp9_resize.h │ │ │ ├── vp9_segmentation.c │ │ │ ├── vp9_segmentation.h │ │ │ ├── vp9_skin_detection.c │ │ │ ├── vp9_skin_detection.h │ │ │ ├── vp9_speed_features.c │ │ │ ├── vp9_speed_features.h │ │ │ ├── vp9_subexp.c │ │ │ ├── vp9_subexp.h │ │ │ ├── vp9_svc_layercontext.c │ │ │ ├── vp9_svc_layercontext.h │ │ │ ├── vp9_temporal_filter.c │ │ │ ├── vp9_temporal_filter.h │ │ │ ├── vp9_tokenize.c │ │ │ ├── vp9_tokenize.h │ │ │ ├── vp9_treewriter.c │ │ │ ├── vp9_treewriter.h │ │ │ └── x86 │ │ │ │ ├── temporal_filter_sse4.c │ │ │ │ ├── vp9_dct_intrin_sse2.c │ │ │ │ ├── vp9_dct_sse2.asm │ │ │ │ ├── vp9_dct_ssse3.c │ │ │ │ ├── vp9_denoiser_sse2.c │ │ │ │ ├── vp9_diamond_search_sad_avx.c │ │ │ │ ├── vp9_error_avx2.c │ │ │ │ ├── vp9_error_sse2.asm │ │ │ │ ├── vp9_frame_scale_ssse3.c │ │ │ │ ├── vp9_highbd_block_error_intrin_sse2.c │ │ │ │ ├── vp9_quantize_sse2.c │ │ │ │ └── vp9_quantize_ssse3_x86_64.asm │ │ ├── vp9_cx_iface.c │ │ ├── vp9_dx_iface.c │ │ ├── vp9_dx_iface.h │ │ └── vp9_iface_common.h │ ├── vp9_rtcd.h │ ├── vpx │ │ ├── internal │ │ │ └── vpx_codec_internal.h │ │ ├── src │ │ │ ├── svc_encodeframe.c │ │ │ ├── vpx_codec.c │ │ │ ├── vpx_decoder.c │ │ │ ├── vpx_encoder.c │ │ │ └── vpx_image.c │ │ ├── svc_context.h │ │ ├── vp8.h │ │ ├── vp8cx.h │ │ ├── vp8dx.h │ │ ├── vpx_codec.h │ │ ├── vpx_decoder.h │ │ ├── vpx_encoder.h │ │ ├── vpx_frame_buffer.h │ │ ├── vpx_image.h │ │ └── vpx_integer.h │ ├── vpx_config.c │ ├── vpx_config.h │ ├── vpx_config_arm.asm │ ├── vpx_config_common.asm │ ├── vpx_config_x86.asm │ ├── vpx_config_x86_64.asm │ ├── vpx_dsp │ │ ├── add_noise.c │ │ ├── arm │ │ │ ├── avg_neon.c │ │ │ ├── avg_pred_neon.c │ │ │ ├── deblock_neon.c │ │ │ ├── fdct16x16_neon.c │ │ │ ├── fdct32x32_neon.c │ │ │ ├── fdct_neon.c │ │ │ ├── fdct_partial_neon.c │ │ │ ├── fwd_txfm_neon.c │ │ │ ├── hadamard_neon.c │ │ │ ├── highbd_idct16x16_add_neon.c │ │ │ ├── highbd_idct32x32_1024_add_neon.c │ │ │ ├── highbd_idct32x32_135_add_neon.c │ │ │ ├── highbd_idct32x32_34_add_neon.c │ │ │ ├── highbd_idct32x32_add_neon.c │ │ │ ├── highbd_idct4x4_add_neon.c │ │ │ ├── highbd_idct8x8_add_neon.c │ │ │ ├── highbd_intrapred_neon.c │ │ │ ├── highbd_loopfilter_neon.c │ │ │ ├── highbd_vpx_convolve8_neon.c │ │ │ ├── highbd_vpx_convolve_avg_neon.c │ │ │ ├── highbd_vpx_convolve_copy_neon.c │ │ │ ├── highbd_vpx_convolve_neon.c │ │ │ ├── idct16x16_1_add_neon.c │ │ │ ├── idct16x16_add_neon.c │ │ │ ├── idct32x32_135_add_neon.c │ │ │ ├── idct32x32_1_add_neon.c │ │ │ ├── idct32x32_34_add_neon.c │ │ │ ├── idct32x32_add_neon.c │ │ │ ├── idct4x4_1_add_neon.asm │ │ │ ├── idct4x4_1_add_neon.c │ │ │ ├── idct4x4_add_neon.asm │ │ │ ├── idct4x4_add_neon.c │ │ │ ├── idct8x8_1_add_neon.c │ │ │ ├── idct8x8_add_neon.c │ │ │ ├── idct_neon.asm │ │ │ ├── idct_neon.h │ │ │ ├── intrapred_neon.c │ │ │ ├── intrapred_neon_asm.asm │ │ │ ├── loopfilter_16_neon.asm │ │ │ ├── loopfilter_4_neon.asm │ │ │ ├── loopfilter_8_neon.asm │ │ │ ├── loopfilter_neon.c │ │ │ ├── mem_neon.h │ │ │ ├── quantize_neon.c │ │ │ ├── sad4d_neon.c │ │ │ ├── sad_neon.c │ │ │ ├── save_reg_neon.asm │ │ │ ├── subpel_variance_neon.c │ │ │ ├── subtract_neon.c │ │ │ ├── sum_neon.h │ │ │ ├── transpose_neon.h │ │ │ ├── variance_neon.c │ │ │ ├── vpx_convolve8_avg_neon_asm.asm │ │ │ ├── vpx_convolve8_neon.c │ │ │ ├── vpx_convolve8_neon.h │ │ │ ├── vpx_convolve8_neon_asm.asm │ │ │ ├── vpx_convolve_avg_neon.c │ │ │ ├── vpx_convolve_avg_neon_asm.asm │ │ │ ├── vpx_convolve_copy_neon.c │ │ │ ├── vpx_convolve_copy_neon_asm.asm │ │ │ ├── vpx_convolve_neon.c │ │ │ └── vpx_scaled_convolve8_neon.c │ │ ├── avg.c │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bitreader_buffer.c │ │ ├── bitreader_buffer.h │ │ ├── bitwriter.c │ │ ├── bitwriter.h │ │ ├── bitwriter_buffer.c │ │ ├── bitwriter_buffer.h │ │ ├── deblock.c │ │ ├── fastssim.c │ │ ├── fwd_txfm.c │ │ ├── fwd_txfm.h │ │ ├── intrapred.c │ │ ├── inv_txfm.c │ │ ├── inv_txfm.h │ │ ├── loopfilter.c │ │ ├── mips │ │ │ ├── add_noise_msa.c │ │ │ ├── avg_msa.c │ │ │ ├── common_dspr2.c │ │ │ ├── common_dspr2.h │ │ │ ├── convolve2_avg_dspr2.c │ │ │ ├── convolve2_avg_horiz_dspr2.c │ │ │ ├── convolve2_dspr2.c │ │ │ ├── convolve2_horiz_dspr2.c │ │ │ ├── convolve2_vert_dspr2.c │ │ │ ├── convolve8_avg_dspr2.c │ │ │ ├── convolve8_avg_horiz_dspr2.c │ │ │ ├── convolve8_dspr2.c │ │ │ ├── convolve8_horiz_dspr2.c │ │ │ ├── convolve8_vert_dspr2.c │ │ │ ├── convolve_common_dspr2.h │ │ │ ├── deblock_msa.c │ │ │ ├── fwd_dct32x32_msa.c │ │ │ ├── fwd_txfm_msa.c │ │ │ ├── fwd_txfm_msa.h │ │ │ ├── idct16x16_msa.c │ │ │ ├── idct32x32_msa.c │ │ │ ├── idct4x4_msa.c │ │ │ ├── idct8x8_msa.c │ │ │ ├── intrapred16_dspr2.c │ │ │ ├── intrapred4_dspr2.c │ │ │ ├── intrapred8_dspr2.c │ │ │ ├── intrapred_msa.c │ │ │ ├── inv_txfm_dspr2.h │ │ │ ├── inv_txfm_msa.h │ │ │ ├── itrans16_dspr2.c │ │ │ ├── itrans32_cols_dspr2.c │ │ │ ├── itrans32_dspr2.c │ │ │ ├── itrans4_dspr2.c │ │ │ ├── itrans8_dspr2.c │ │ │ ├── loopfilter_16_msa.c │ │ │ ├── loopfilter_4_msa.c │ │ │ ├── loopfilter_8_msa.c │ │ │ ├── loopfilter_filters_dspr2.c │ │ │ ├── loopfilter_filters_dspr2.h │ │ │ ├── loopfilter_macros_dspr2.h │ │ │ ├── loopfilter_masks_dspr2.h │ │ │ ├── loopfilter_mb_dspr2.c │ │ │ ├── loopfilter_mb_horiz_dspr2.c │ │ │ ├── loopfilter_mb_vert_dspr2.c │ │ │ ├── loopfilter_msa.h │ │ │ ├── macros_msa.h │ │ │ ├── sad_mmi.c │ │ │ ├── sad_msa.c │ │ │ ├── sub_pixel_variance_msa.c │ │ │ ├── subtract_mmi.c │ │ │ ├── subtract_msa.c │ │ │ ├── sum_squares_msa.c │ │ │ ├── txfm_macros_msa.h │ │ │ ├── variance_mmi.c │ │ │ ├── variance_msa.c │ │ │ ├── vpx_convolve8_avg_horiz_msa.c │ │ │ ├── vpx_convolve8_avg_msa.c │ │ │ ├── vpx_convolve8_avg_vert_msa.c │ │ │ ├── vpx_convolve8_horiz_msa.c │ │ │ ├── vpx_convolve8_msa.c │ │ │ ├── vpx_convolve8_vert_msa.c │ │ │ ├── vpx_convolve_avg_msa.c │ │ │ ├── vpx_convolve_copy_msa.c │ │ │ └── vpx_convolve_msa.h │ │ ├── postproc.h │ │ ├── ppc │ │ │ ├── bitdepth_conversion_vsx.h │ │ │ ├── hadamard_vsx.c │ │ │ ├── intrapred_vsx.c │ │ │ ├── inv_txfm_vsx.c │ │ │ ├── sad_vsx.c │ │ │ ├── transpose_vsx.h │ │ │ ├── types_vsx.h │ │ │ ├── variance_vsx.c │ │ │ └── vpx_convolve_vsx.c │ │ ├── prob.c │ │ ├── prob.h │ │ ├── psnr.c │ │ ├── psnr.h │ │ ├── psnrhvs.c │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── sad.c │ │ ├── skin_detection.c │ │ ├── skin_detection.h │ │ ├── ssim.c │ │ ├── ssim.h │ │ ├── subtract.c │ │ ├── sum_squares.c │ │ ├── txfm_common.h │ │ ├── variance.c │ │ ├── variance.h │ │ ├── vpx_convolve.c │ │ ├── vpx_convolve.h │ │ ├── vpx_dsp_common.h │ │ ├── vpx_dsp_rtcd.c │ │ ├── vpx_dsp_rtcd_defs.pl │ │ ├── vpx_filter.h │ │ └── x86 │ │ │ ├── add_noise_sse2.asm │ │ │ ├── avg_intrin_avx2.c │ │ │ ├── avg_intrin_sse2.c │ │ │ ├── avg_pred_sse2.c │ │ │ ├── avg_ssse3_x86_64.asm │ │ │ ├── bitdepth_conversion_avx2.h │ │ │ ├── bitdepth_conversion_sse2.asm │ │ │ ├── bitdepth_conversion_sse2.h │ │ │ ├── convolve.h │ │ │ ├── convolve_avx2.h │ │ │ ├── convolve_ssse3.h │ │ │ ├── deblock_sse2.asm │ │ │ ├── fwd_dct32x32_impl_avx2.h │ │ │ ├── fwd_dct32x32_impl_sse2.h │ │ │ ├── fwd_txfm_avx2.c │ │ │ ├── fwd_txfm_impl_sse2.h │ │ │ ├── fwd_txfm_sse2.c │ │ │ ├── fwd_txfm_sse2.h │ │ │ ├── fwd_txfm_ssse3_x86_64.asm │ │ │ ├── highbd_convolve_avx2.c │ │ │ ├── highbd_idct16x16_add_sse2.c │ │ │ ├── highbd_idct16x16_add_sse4.c │ │ │ ├── highbd_idct32x32_add_sse2.c │ │ │ ├── highbd_idct32x32_add_sse4.c │ │ │ ├── highbd_idct4x4_add_sse2.c │ │ │ ├── highbd_idct4x4_add_sse4.c │ │ │ ├── highbd_idct8x8_add_sse2.c │ │ │ ├── highbd_idct8x8_add_sse4.c │ │ │ ├── highbd_intrapred_intrin_sse2.c │ │ │ ├── highbd_intrapred_intrin_ssse3.c │ │ │ ├── highbd_intrapred_sse2.asm │ │ │ ├── highbd_inv_txfm_sse2.h │ │ │ ├── highbd_inv_txfm_sse4.h │ │ │ ├── highbd_loopfilter_sse2.c │ │ │ ├── highbd_quantize_intrin_sse2.c │ │ │ ├── highbd_sad4d_sse2.asm │ │ │ ├── highbd_sad_sse2.asm │ │ │ ├── highbd_subpel_variance_impl_sse2.asm │ │ │ ├── highbd_variance_impl_sse2.asm │ │ │ ├── highbd_variance_sse2.c │ │ │ ├── intrapred_sse2.asm │ │ │ ├── intrapred_ssse3.asm │ │ │ ├── inv_txfm_sse2.c │ │ │ ├── inv_txfm_sse2.h │ │ │ ├── inv_txfm_ssse3.c │ │ │ ├── inv_txfm_ssse3.h │ │ │ ├── inv_wht_sse2.asm │ │ │ ├── loopfilter_avx2.c │ │ │ ├── loopfilter_sse2.c │ │ │ ├── mem_sse2.h │ │ │ ├── quantize_avx.c │ │ │ ├── quantize_sse2.c │ │ │ ├── quantize_ssse3.c │ │ │ ├── quantize_x86.h │ │ │ ├── sad4d_avx2.c │ │ │ ├── sad4d_avx512.c │ │ │ ├── sad4d_sse2.asm │ │ │ ├── sad_avx2.c │ │ │ ├── sad_sse2.asm │ │ │ ├── sad_sse3.asm │ │ │ ├── sad_sse4.asm │ │ │ ├── sad_ssse3.asm │ │ │ ├── ssim_opt_x86_64.asm │ │ │ ├── subpel_variance_sse2.asm │ │ │ ├── subtract_sse2.asm │ │ │ ├── sum_squares_sse2.c │ │ │ ├── transpose_sse2.h │ │ │ ├── txfm_common_sse2.h │ │ │ ├── variance_avx2.c │ │ │ ├── variance_sse2.c │ │ │ ├── vpx_asm_stubs.c │ │ │ ├── vpx_convolve_copy_sse2.asm │ │ │ ├── vpx_high_subpixel_8t_sse2.asm │ │ │ ├── vpx_high_subpixel_bilinear_sse2.asm │ │ │ ├── vpx_subpixel_8t_intrin_avx2.c │ │ │ ├── vpx_subpixel_8t_intrin_ssse3.c │ │ │ ├── vpx_subpixel_8t_sse2.asm │ │ │ ├── vpx_subpixel_8t_ssse3.asm │ │ │ ├── vpx_subpixel_bilinear_sse2.asm │ │ │ └── vpx_subpixel_bilinear_ssse3.asm │ ├── vpx_dsp_rtcd.h │ ├── vpx_mem │ │ ├── include │ │ │ └── vpx_mem_intrnl.h │ │ ├── vpx_mem.c │ │ └── vpx_mem.h │ ├── vpx_ports │ │ ├── arm.h │ │ ├── arm_cpudetect.c │ │ ├── asmdefs_mmi.h │ │ ├── bitops.h │ │ ├── config.h │ │ ├── emmintrin_compat.h │ │ ├── emms.asm │ │ ├── mem.h │ │ ├── mem_ops.h │ │ ├── mem_ops_aligned.h │ │ ├── msvc.h │ │ ├── ppc.h │ │ ├── ppc_cpudetect.c │ │ ├── system_state.h │ │ ├── vpx_once.h │ │ ├── vpx_timer.h │ │ ├── x86.h │ │ └── x86_abi_support.asm │ ├── vpx_scale │ │ ├── generic │ │ │ ├── gen_scalers.c │ │ │ ├── vpx_scale.c │ │ │ ├── yv12config.c │ │ │ └── yv12extend.c │ │ ├── mips │ │ │ └── dspr2 │ │ │ │ └── yv12extend_dspr2.c │ │ ├── vpx_scale.h │ │ ├── vpx_scale_rtcd.c │ │ ├── vpx_scale_rtcd.pl │ │ └── yv12config.h │ ├── vpx_scale_rtcd.h │ ├── vpx_util │ │ ├── endian_inl.h │ │ ├── vpx_atomics.h │ │ ├── vpx_thread.c │ │ ├── vpx_thread.h │ │ ├── vpx_write_yuv_frame.c │ │ └── vpx_write_yuv_frame.h │ └── vpx_version.h │ ├── noto_emoji │ ├── emoji.inc │ ├── emoji_png.inc │ ├── emoji_png_data0.inc │ ├── emoji_png_data1.inc │ ├── emoji_png_data10.inc │ ├── emoji_png_data11.inc │ ├── emoji_png_data12.inc │ ├── emoji_png_data13.inc │ ├── emoji_png_data14.inc │ ├── emoji_png_data15.inc │ ├── emoji_png_data16.inc │ ├── emoji_png_data17.inc │ ├── emoji_png_data18.inc │ ├── emoji_png_data19.inc │ ├── emoji_png_data2.inc │ ├── emoji_png_data3.inc │ ├── emoji_png_data4.inc │ ├── emoji_png_data5.inc │ ├── emoji_png_data6.inc │ ├── emoji_png_data7.inc │ ├── emoji_png_data8.inc │ ├── emoji_png_data9.inc │ ├── noto_emoji.cpp │ └── noto_emoji_png.cpp │ ├── opus │ ├── COPYING │ ├── README │ ├── celt │ │ ├── _kiss_fft_guts.h │ │ ├── arch.h │ │ ├── arm │ │ │ ├── arm2gnu.pl │ │ │ ├── arm_celt_map.c │ │ │ ├── armcpu.c │ │ │ ├── armcpu.h │ │ │ ├── armopts.s.in │ │ │ ├── celt_ne10_fft.c │ │ │ ├── celt_ne10_mdct.c │ │ │ ├── celt_neon_intr.c │ │ │ ├── celt_pitch_xcorr_arm-apple.S │ │ │ ├── celt_pitch_xcorr_arm-gnu.S │ │ │ ├── celt_pitch_xcorr_arm.s │ │ │ ├── fft_arm.h │ │ │ ├── fixed_arm64.h │ │ │ ├── fixed_armv4.h │ │ │ ├── fixed_armv5e.h │ │ │ ├── kiss_fft_armv4.h │ │ │ ├── kiss_fft_armv5e.h │ │ │ ├── mdct_arm.h │ │ │ ├── pitch_arm.h │ │ │ └── pitch_neon_intr.c │ │ ├── bands.c │ │ ├── bands.h │ │ ├── celt.c │ │ ├── celt.h │ │ ├── celt_decoder.c │ │ ├── celt_encoder.c │ │ ├── celt_lpc.c │ │ ├── celt_lpc.h │ │ ├── cpu_support.h │ │ ├── cwrs.c │ │ ├── cwrs.h │ │ ├── ecintrin.h │ │ ├── entcode.c │ │ ├── entcode.h │ │ ├── entdec.c │ │ ├── entdec.h │ │ ├── entenc.c │ │ ├── entenc.h │ │ ├── fixed_debug.h │ │ ├── fixed_generic.h │ │ ├── float_cast.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── laplace.c │ │ ├── laplace.h │ │ ├── mathops.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── mfrngcod.h │ │ ├── mips │ │ │ ├── celt_mipsr1.h │ │ │ ├── fixed_generic_mipsr1.h │ │ │ ├── kiss_fft_mipsr1.h │ │ │ ├── mdct_mipsr1.h │ │ │ ├── pitch_mipsr1.h │ │ │ └── vq_mipsr1.h │ │ ├── modes.c │ │ ├── modes.h │ │ ├── os_support.h │ │ ├── pitch.c │ │ ├── pitch.h │ │ ├── quant_bands.c │ │ ├── quant_bands.h │ │ ├── rate.c │ │ ├── rate.h │ │ ├── stack_alloc.h │ │ ├── static_modes_fixed.h │ │ ├── static_modes_fixed_arm_ne10.h │ │ ├── static_modes_float.h │ │ ├── static_modes_float_arm_ne10.h │ │ ├── vq.c │ │ ├── vq.h │ │ └── x86 │ │ │ ├── celt_lpc_sse.c │ │ │ ├── celt_lpc_sse.h │ │ │ ├── pitch_sse.c │ │ │ ├── pitch_sse.h │ │ │ ├── pitch_sse2.c │ │ │ ├── pitch_sse4_1.c │ │ │ ├── vq_sse.h │ │ │ ├── vq_sse2.c │ │ │ ├── x86_celt_map.c │ │ │ ├── x86cpu.c │ │ │ └── x86cpu.h │ ├── include │ │ ├── config.h │ │ ├── opus.h │ │ ├── opus_custom.h │ │ ├── opus_defines.h │ │ ├── opus_multistream.h │ │ └── opus_types.h │ ├── silk │ │ ├── A2NLSF.c │ │ ├── API.h │ │ ├── CNG.c │ │ ├── HP_variable_cutoff.c │ │ ├── Inlines.h │ │ ├── LPC_analysis_filter.c │ │ ├── LPC_fit.c │ │ ├── LPC_inv_pred_gain.c │ │ ├── LP_variable_cutoff.c │ │ ├── MacroCount.h │ │ ├── MacroDebug.h │ │ ├── NLSF2A.c │ │ ├── NLSF_VQ.c │ │ ├── NLSF_VQ_weights_laroia.c │ │ ├── NLSF_decode.c │ │ ├── NLSF_del_dec_quant.c │ │ ├── NLSF_encode.c │ │ ├── NLSF_stabilize.c │ │ ├── NLSF_unpack.c │ │ ├── NSQ.c │ │ ├── NSQ.h │ │ ├── NSQ_del_dec.c │ │ ├── PLC.c │ │ ├── PLC.h │ │ ├── SigProc_FIX.h │ │ ├── VAD.c │ │ ├── VQ_WMat_EC.c │ │ ├── ana_filt_bank_1.c │ │ ├── arm │ │ │ ├── LPC_inv_pred_gain_arm.h │ │ │ ├── LPC_inv_pred_gain_neon_intr.c │ │ │ ├── NSQ_del_dec_arm.h │ │ │ ├── NSQ_del_dec_neon_intr.c │ │ │ ├── NSQ_neon.c │ │ │ ├── NSQ_neon.h │ │ │ ├── SigProc_FIX_armv4.h │ │ │ ├── SigProc_FIX_armv5e.h │ │ │ ├── arm_silk_map.c │ │ │ ├── biquad_alt_arm.h │ │ │ ├── biquad_alt_neon_intr.c │ │ │ ├── macros_arm64.h │ │ │ ├── macros_armv4.h │ │ │ └── macros_armv5e.h │ │ ├── biquad_alt.c │ │ ├── bwexpander.c │ │ ├── bwexpander_32.c │ │ ├── check_control_input.c │ │ ├── code_signs.c │ │ ├── control.h │ │ ├── control_SNR.c │ │ ├── control_audio_bandwidth.c │ │ ├── control_codec.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dec_API.c │ │ ├── decode_core.c │ │ ├── decode_frame.c │ │ ├── decode_indices.c │ │ ├── decode_parameters.c │ │ ├── decode_pitch.c │ │ ├── decode_pulses.c │ │ ├── decoder_set_fs.c │ │ ├── define.h │ │ ├── enc_API.c │ │ ├── encode_indices.c │ │ ├── encode_pulses.c │ │ ├── errors.h │ │ ├── fixed │ │ │ ├── LTP_analysis_filter_FIX.c │ │ │ ├── LTP_scale_ctrl_FIX.c │ │ │ ├── apply_sine_window_FIX.c │ │ │ ├── arm │ │ │ │ ├── warped_autocorrelation_FIX_arm.h │ │ │ │ └── warped_autocorrelation_FIX_neon_intr.c │ │ │ ├── autocorr_FIX.c │ │ │ ├── burg_modified_FIX.c │ │ │ ├── corrMatrix_FIX.c │ │ │ ├── encode_frame_FIX.c │ │ │ ├── find_LPC_FIX.c │ │ │ ├── find_LTP_FIX.c │ │ │ ├── find_pitch_lags_FIX.c │ │ │ ├── find_pred_coefs_FIX.c │ │ │ ├── k2a_FIX.c │ │ │ ├── k2a_Q16_FIX.c │ │ │ ├── main_FIX.h │ │ │ ├── mips │ │ │ │ ├── noise_shape_analysis_FIX_mipsr1.h │ │ │ │ └── warped_autocorrelation_FIX_mipsr1.h │ │ │ ├── noise_shape_analysis_FIX.c │ │ │ ├── pitch_analysis_core_FIX.c │ │ │ ├── process_gains_FIX.c │ │ │ ├── regularize_correlations_FIX.c │ │ │ ├── residual_energy16_FIX.c │ │ │ ├── residual_energy_FIX.c │ │ │ ├── schur64_FIX.c │ │ │ ├── schur_FIX.c │ │ │ ├── structs_FIX.h │ │ │ ├── vector_ops_FIX.c │ │ │ ├── warped_autocorrelation_FIX.c │ │ │ └── x86 │ │ │ │ ├── burg_modified_FIX_sse.c │ │ │ │ └── vector_ops_FIX_sse.c │ │ ├── float │ │ │ ├── LPC_analysis_filter_FLP.c │ │ │ ├── LPC_inv_pred_gain_FLP.c │ │ │ ├── LTP_analysis_filter_FLP.c │ │ │ ├── LTP_scale_ctrl_FLP.c │ │ │ ├── SigProc_FLP.h │ │ │ ├── apply_sine_window_FLP.c │ │ │ ├── autocorrelation_FLP.c │ │ │ ├── burg_modified_FLP.c │ │ │ ├── bwexpander_FLP.c │ │ │ ├── corrMatrix_FLP.c │ │ │ ├── encode_frame_FLP.c │ │ │ ├── energy_FLP.c │ │ │ ├── find_LPC_FLP.c │ │ │ ├── find_LTP_FLP.c │ │ │ ├── find_pitch_lags_FLP.c │ │ │ ├── find_pred_coefs_FLP.c │ │ │ ├── inner_product_FLP.c │ │ │ ├── k2a_FLP.c │ │ │ ├── main_FLP.h │ │ │ ├── noise_shape_analysis_FLP.c │ │ │ ├── pitch_analysis_core_FLP.c │ │ │ ├── process_gains_FLP.c │ │ │ ├── regularize_correlations_FLP.c │ │ │ ├── residual_energy_FLP.c │ │ │ ├── scale_copy_vector_FLP.c │ │ │ ├── scale_vector_FLP.c │ │ │ ├── schur_FLP.c │ │ │ ├── sort_FLP.c │ │ │ ├── structs_FLP.h │ │ │ ├── warped_autocorrelation_FLP.c │ │ │ └── wrappers_FLP.c │ │ ├── gain_quant.c │ │ ├── init_decoder.c │ │ ├── init_encoder.c │ │ ├── inner_prod_aligned.c │ │ ├── interpolate.c │ │ ├── lin2log.c │ │ ├── log2lin.c │ │ ├── macros.h │ │ ├── main.h │ │ ├── mips │ │ │ ├── NSQ_del_dec_mipsr1.h │ │ │ ├── macros_mipsr1.h │ │ │ └── sigproc_fix_mipsr1.h │ │ ├── pitch_est_defines.h │ │ ├── pitch_est_tables.c │ │ ├── process_NLSFs.c │ │ ├── quant_LTP_gains.c │ │ ├── resampler.c │ │ ├── resampler_down2.c │ │ ├── resampler_down2_3.c │ │ ├── resampler_private.h │ │ ├── resampler_private_AR2.c │ │ ├── resampler_private_IIR_FIR.c │ │ ├── resampler_private_down_FIR.c │ │ ├── resampler_private_up2_HQ.c │ │ ├── resampler_rom.c │ │ ├── resampler_rom.h │ │ ├── resampler_structs.h │ │ ├── shell_coder.c │ │ ├── sigm_Q15.c │ │ ├── sort.c │ │ ├── stereo_LR_to_MS.c │ │ ├── stereo_MS_to_LR.c │ │ ├── stereo_decode_pred.c │ │ ├── stereo_encode_pred.c │ │ ├── stereo_find_predictor.c │ │ ├── stereo_quant_pred.c │ │ ├── structs.h │ │ ├── sum_sqr_shift.c │ │ ├── table_LSF_cos.c │ │ ├── tables.h │ │ ├── tables_LTP.c │ │ ├── tables_NLSF_CB_NB_MB.c │ │ ├── tables_NLSF_CB_WB.c │ │ ├── tables_gain.c │ │ ├── tables_other.c │ │ ├── tables_pitch_lag.c │ │ ├── tables_pulses_per_block.c │ │ ├── tuning_parameters.h │ │ ├── typedef.h │ │ └── x86 │ │ │ ├── NSQ_del_dec_sse.c │ │ │ ├── NSQ_sse.c │ │ │ ├── SigProc_FIX_sse.h │ │ │ ├── VAD_sse.c │ │ │ ├── VQ_WMat_EC_sse.c │ │ │ ├── main_sse.h │ │ │ └── x86_silk_map.c │ └── src │ │ ├── analysis.c │ │ ├── analysis.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_data.c │ │ ├── opus.c │ │ ├── opus_decoder.c │ │ ├── opus_encoder.c │ │ ├── opus_multistream.c │ │ ├── opus_multistream_decoder.c │ │ ├── opus_multistream_encoder.c │ │ ├── opus_private.h │ │ ├── repacketizer.c │ │ └── tansig_table.h │ ├── sqlite │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h │ ├── yasm │ ├── Artistic.txt │ ├── BSD.txt │ ├── COPYING │ ├── GNU_LGPL-2.0 │ ├── YASM-VERSION.h │ ├── config.h │ ├── config_unix.h │ ├── config_win32.h │ ├── frontends │ │ └── yasm │ │ │ ├── yasm-options.c │ │ │ ├── yasm-options.h │ │ │ ├── yasm-plugin.c │ │ │ ├── yasm-plugin.h │ │ │ └── yasm.c │ ├── gas-token.c │ ├── gen_inc │ │ ├── license.c │ │ ├── nasm-macros.c │ │ ├── nasm-version.c │ │ ├── win64-gas.c │ │ ├── win64-nasm.c │ │ ├── x86insn_gas.c │ │ ├── x86insn_nasm.c │ │ └── x86insns.c │ ├── lc3bid.c │ ├── libyasm-stdint.h │ ├── libyasm-stdint_unix.h │ ├── libyasm-stdint_win32.h │ ├── libyasm.h │ ├── libyasm │ │ ├── arch.h │ │ ├── assocdat.c │ │ ├── assocdat.h │ │ ├── bc-align.c │ │ ├── bc-data.c │ │ ├── bc-incbin.c │ │ ├── bc-org.c │ │ ├── bc-reserve.c │ │ ├── bitvect.c │ │ ├── bitvect.h │ │ ├── bytecode.c │ │ ├── bytecode.h │ │ ├── compat-queue.h │ │ ├── coretype.h │ │ ├── dbgfmt.h │ │ ├── errwarn.c │ │ ├── errwarn.h │ │ ├── expr.c │ │ ├── expr.h │ │ ├── file.c │ │ ├── file.h │ │ ├── floatnum.c │ │ ├── floatnum.h │ │ ├── genmodule.c │ │ ├── hamt.c │ │ ├── hamt.h │ │ ├── insn.c │ │ ├── insn.h │ │ ├── intnum.c │ │ ├── intnum.h │ │ ├── inttree.c │ │ ├── inttree.h │ │ ├── linemap.c │ │ ├── linemap.h │ │ ├── listfmt.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mergesort.c │ │ ├── module.h │ │ ├── objfmt.h │ │ ├── parser.h │ │ ├── phash.c │ │ ├── phash.h │ │ ├── preproc.h │ │ ├── section.c │ │ ├── section.h │ │ ├── strcasecmp.c │ │ ├── strsep.c │ │ ├── symrec.c │ │ ├── symrec.h │ │ ├── valparam.c │ │ ├── valparam.h │ │ ├── value.c │ │ ├── value.h │ │ ├── xmalloc.c │ │ └── xstrdup.c │ ├── module.c │ ├── modules │ │ ├── arch │ │ │ ├── lc3b │ │ │ │ ├── lc3barch.c │ │ │ │ ├── lc3barch.h │ │ │ │ ├── lc3bbc.c │ │ │ │ └── lc3bid.re │ │ │ └── x86 │ │ │ │ ├── gen_x86_insn.py │ │ │ │ ├── x86arch.c │ │ │ │ ├── x86arch.h │ │ │ │ ├── x86bc.c │ │ │ │ ├── x86cpu.gperf │ │ │ │ ├── x86expr.c │ │ │ │ ├── x86id.c │ │ │ │ └── x86regtmod.gperf │ │ ├── dbgfmts │ │ │ ├── codeview │ │ │ │ ├── cv-dbgfmt.c │ │ │ │ ├── cv-dbgfmt.h │ │ │ │ ├── cv-symline.c │ │ │ │ ├── cv-type.c │ │ │ │ └── cv8.txt │ │ │ ├── dwarf2 │ │ │ │ ├── dwarf2-aranges.c │ │ │ │ ├── dwarf2-dbgfmt.c │ │ │ │ ├── dwarf2-dbgfmt.h │ │ │ │ ├── dwarf2-info.c │ │ │ │ └── dwarf2-line.c │ │ │ ├── null │ │ │ │ └── null-dbgfmt.c │ │ │ └── stabs │ │ │ │ └── stabs-dbgfmt.c │ │ ├── listfmts │ │ │ └── nasm │ │ │ │ └── nasm-listfmt.c │ │ ├── objfmts │ │ │ ├── bin │ │ │ │ └── bin-objfmt.c │ │ │ ├── coff │ │ │ │ ├── coff-objfmt.c │ │ │ │ ├── coff-objfmt.h │ │ │ │ └── win64-except.c │ │ │ ├── dbg │ │ │ │ └── dbg-objfmt.c │ │ │ ├── elf │ │ │ │ ├── elf-machine.h │ │ │ │ ├── elf-objfmt.c │ │ │ │ ├── elf-x86-amd64.c │ │ │ │ ├── elf-x86-x32.c │ │ │ │ ├── elf-x86-x86.c │ │ │ │ ├── elf.c │ │ │ │ └── elf.h │ │ │ ├── macho │ │ │ │ └── macho-objfmt.c │ │ │ ├── rdf │ │ │ │ └── rdf-objfmt.c │ │ │ └── xdf │ │ │ │ └── xdf-objfmt.c │ │ ├── parsers │ │ │ ├── gas │ │ │ │ ├── gas-parse-intel.c │ │ │ │ ├── gas-parse.c │ │ │ │ ├── gas-parser.c │ │ │ │ ├── gas-parser.h │ │ │ │ └── gas-token.re │ │ │ └── nasm │ │ │ │ ├── nasm-parse.c │ │ │ │ ├── nasm-parser-struct.h │ │ │ │ ├── nasm-parser.c │ │ │ │ ├── nasm-parser.h │ │ │ │ └── nasm-token.re │ │ └── preprocs │ │ │ ├── cpp │ │ │ └── cpp-preproc.c │ │ │ ├── gas │ │ │ ├── gas-eval.c │ │ │ ├── gas-eval.h │ │ │ └── gas-preproc.c │ │ │ ├── nasm │ │ │ ├── genversion.c │ │ │ ├── nasm-eval.c │ │ │ ├── nasm-eval.h │ │ │ ├── nasm-pp.c │ │ │ ├── nasm-pp.h │ │ │ ├── nasm-preproc.c │ │ │ ├── nasm.h │ │ │ ├── nasmlib.c │ │ │ └── nasmlib.h │ │ │ └── raw │ │ │ └── raw-preproc.c │ ├── nasm-token.c │ ├── util.h │ ├── x86cpu.c │ └── x86regtmod.c │ ├── zlib │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── contrib │ │ ├── amd64 │ │ │ └── amd64-match.S │ │ ├── asm686 │ │ │ ├── README.686 │ │ │ └── match.S │ │ ├── masmx64 │ │ │ ├── bld_ml64.bat │ │ │ ├── gvmat64.asm │ │ │ ├── inffas8664.c │ │ │ ├── inffasx64.asm │ │ │ └── readme.txt │ │ └── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ ├── inffas32.asm │ │ │ ├── match686.asm │ │ │ └── readme.txt │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib_slib.h │ ├── zutil.c │ └── zutil.h │ └── zxing │ ├── LICENSE │ ├── README.md │ └── zxing │ ├── BarcodeFormat.cpp │ ├── BarcodeFormat.h │ ├── BinaryBitmap.h │ ├── BitArray.cpp │ ├── BitArray.h │ ├── BitHacks.h │ ├── BitMatrix.cpp │ ├── BitMatrix.h │ ├── BitSource.cpp │ ├── BitSource.h │ ├── BitWrapperBinarizer.cpp │ ├── BitWrapperBinarizer.h │ ├── ByteArray.h │ ├── ByteMatrix.h │ ├── CharacterSet.h │ ├── CharacterSetECI.cpp │ ├── CharacterSetECI.h │ ├── CustomData.h │ ├── DecodeHints.cpp │ ├── DecodeHints.h │ ├── DecodeStatus.cpp │ ├── DecodeStatus.h │ ├── DecoderResult.h │ ├── DetectorResult.h │ ├── GenericGF.cpp │ ├── GenericGF.h │ ├── GenericGFPoly.cpp │ ├── GenericGFPoly.h │ ├── GenericLuminanceSource.cpp │ ├── GenericLuminanceSource.h │ ├── GlobalHistogramBinarizer.cpp │ ├── GlobalHistogramBinarizer.h │ ├── GridSampler.cpp │ ├── GridSampler.h │ ├── HybridBinarizer.cpp │ ├── HybridBinarizer.h │ ├── LuminanceSource.cpp │ ├── LuminanceSource.h │ ├── MultiFormatReader.cpp │ ├── MultiFormatReader.h │ ├── MultiFormatWriter.cpp │ ├── MultiFormatWriter.h │ ├── PerspectiveTransform.cpp │ ├── PerspectiveTransform.h │ ├── Reader.h │ ├── ReedSolomonDecoder.cpp │ ├── ReedSolomonDecoder.h │ ├── ReedSolomonEncoder.cpp │ ├── ReedSolomonEncoder.h │ ├── Result.cpp │ ├── Result.h │ ├── ResultMetadata.cpp │ ├── ResultMetadata.h │ ├── ResultPoint.cpp │ ├── ResultPoint.h │ ├── TextDecoder.cpp │ ├── TextDecoder.h │ ├── TextEncoder.cpp │ ├── TextEncoder.h │ ├── TextUtfEncoding.cpp │ ├── TextUtfEncoding.h │ ├── WhiteRectDetector.cpp │ ├── WhiteRectDetector.h │ ├── ZXBigInteger.cpp │ ├── ZXBigInteger.h │ ├── ZXConfig.h │ ├── ZXContainerAlgorithms.h │ ├── ZXNullable.h │ ├── ZXNumeric.h │ ├── ZXStrConvWorkaround.h │ ├── ZXTestSupport.h │ ├── aztec │ ├── AZDecoder.cpp │ ├── AZDecoder.h │ ├── AZDetector.cpp │ ├── AZDetector.h │ ├── AZDetectorResult.h │ ├── AZEncoder.cpp │ ├── AZEncoder.h │ ├── AZEncodingState.h │ ├── AZHighLevelEncoder.cpp │ ├── AZHighLevelEncoder.h │ ├── AZReader.cpp │ ├── AZReader.h │ ├── AZToken.cpp │ ├── AZToken.h │ ├── AZWriter.cpp │ └── AZWriter.h │ ├── datamatrix │ ├── DMBitMatrixParser.cpp │ ├── DMBitMatrixParser.h │ ├── DMDataBlock.cpp │ ├── DMDataBlock.h │ ├── DMDecoder.cpp │ ├── DMDecoder.h │ ├── DMDefaultPlacement.cpp │ ├── DMDefaultPlacement.h │ ├── DMDetector.cpp │ ├── DMDetector.h │ ├── DMECB.h │ ├── DMECEncoder.cpp │ ├── DMECEncoder.h │ ├── DMEncoderContext.h │ ├── DMHighLevelEncoder.cpp │ ├── DMHighLevelEncoder.h │ ├── DMReader.cpp │ ├── DMReader.h │ ├── DMSymbolInfo.cpp │ ├── DMSymbolInfo.h │ ├── DMSymbolShape.h │ ├── DMVersion.cpp │ ├── DMVersion.h │ ├── DMWriter.cpp │ └── DMWriter.h │ ├── maxicode │ ├── MCBitMatrixParser.cpp │ ├── MCBitMatrixParser.h │ ├── MCDecoder.cpp │ ├── MCDecoder.h │ ├── MCReader.cpp │ └── MCReader.h │ ├── oned │ ├── ODCodabarReader.cpp │ ├── ODCodabarReader.h │ ├── ODCodabarWriter.cpp │ ├── ODCodabarWriter.h │ ├── ODCode128Patterns.cpp │ ├── ODCode128Patterns.h │ ├── ODCode128Reader.cpp │ ├── ODCode128Reader.h │ ├── ODCode128Writer.cpp │ ├── ODCode128Writer.h │ ├── ODCode39Reader.cpp │ ├── ODCode39Reader.h │ ├── ODCode39Writer.cpp │ ├── ODCode39Writer.h │ ├── ODCode93Reader.cpp │ ├── ODCode93Reader.h │ ├── ODCode93Writer.cpp │ ├── ODCode93Writer.h │ ├── ODEAN13Reader.cpp │ ├── ODEAN13Reader.h │ ├── ODEAN13Writer.cpp │ ├── ODEAN13Writer.h │ ├── ODEAN8Reader.cpp │ ├── ODEAN8Reader.h │ ├── ODEAN8Writer.cpp │ ├── ODEAN8Writer.h │ ├── ODEANManufacturerOrgSupport.cpp │ ├── ODEANManufacturerOrgSupport.h │ ├── ODITFReader.cpp │ ├── ODITFReader.h │ ├── ODITFWriter.cpp │ ├── ODITFWriter.h │ ├── ODMultiUPCEANReader.cpp │ ├── ODMultiUPCEANReader.h │ ├── ODRSS14Reader.cpp │ ├── ODRSS14Reader.h │ ├── ODRSSExpandedReader.cpp │ ├── ODRSSExpandedReader.h │ ├── ODReader.cpp │ ├── ODReader.h │ ├── ODRowReader.cpp │ ├── ODRowReader.h │ ├── ODUPCAReader.cpp │ ├── ODUPCAReader.h │ ├── ODUPCAWriter.cpp │ ├── ODUPCAWriter.h │ ├── ODUPCEANCommon.cpp │ ├── ODUPCEANCommon.h │ ├── ODUPCEANExtensionSupport.cpp │ ├── ODUPCEANExtensionSupport.h │ ├── ODUPCEANReader.cpp │ ├── ODUPCEANReader.h │ ├── ODUPCEReader.cpp │ ├── ODUPCEReader.h │ ├── ODUPCEWriter.cpp │ ├── ODUPCEWriter.h │ ├── ODWriterHelper.cpp │ ├── ODWriterHelper.h │ └── rss │ │ ├── ODRSSDataCharacter.h │ │ ├── ODRSSExpandedBinaryDecoder.cpp │ │ ├── ODRSSExpandedBinaryDecoder.h │ │ ├── ODRSSExpandedPair.h │ │ ├── ODRSSExpandedRow.h │ │ ├── ODRSSFieldParser.cpp │ │ ├── ODRSSFieldParser.h │ │ ├── ODRSSFinderPattern.h │ │ ├── ODRSSGenericAppIdDecoder.cpp │ │ ├── ODRSSGenericAppIdDecoder.h │ │ ├── ODRSSPair.h │ │ ├── ODRSSReaderHelper.cpp │ │ └── ODRSSReaderHelper.h │ ├── pdf417 │ ├── PDFBarcodeMetadata.h │ ├── PDFBarcodeValue.cpp │ ├── PDFBarcodeValue.h │ ├── PDFBoundingBox.cpp │ ├── PDFBoundingBox.h │ ├── PDFCodeword.h │ ├── PDFCodewordDecoder.cpp │ ├── PDFCodewordDecoder.h │ ├── PDFCompaction.h │ ├── PDFDecodedBitStreamParser.cpp │ ├── PDFDecodedBitStreamParser.h │ ├── PDFDecoderResultExtra.h │ ├── PDFDetectionResult.cpp │ ├── PDFDetectionResult.h │ ├── PDFDetectionResultColumn.cpp │ ├── PDFDetectionResultColumn.h │ ├── PDFDetector.cpp │ ├── PDFDetector.h │ ├── PDFEncoder.cpp │ ├── PDFEncoder.h │ ├── PDFHighLevelEncoder.cpp │ ├── PDFHighLevelEncoder.h │ ├── PDFModulusGF.cpp │ ├── PDFModulusGF.h │ ├── PDFModulusPoly.cpp │ ├── PDFModulusPoly.h │ ├── PDFReader.cpp │ ├── PDFReader.h │ ├── PDFScanningDecoder.cpp │ ├── PDFScanningDecoder.h │ ├── PDFWriter.cpp │ └── PDFWriter.h │ ├── qrcode │ ├── QRAlignmentPattern.cpp │ ├── QRAlignmentPattern.h │ ├── QRAlignmentPatternFinder.cpp │ ├── QRAlignmentPatternFinder.h │ ├── QRBitMatrixParser.cpp │ ├── QRBitMatrixParser.h │ ├── QRCodecMode.cpp │ ├── QRCodecMode.h │ ├── QRDataBlock.cpp │ ├── QRDataBlock.h │ ├── QRDataMask.cpp │ ├── QRDataMask.h │ ├── QRDecoder.cpp │ ├── QRDecoder.h │ ├── QRDecoderMetadata.h │ ├── QRDetector.cpp │ ├── QRDetector.h │ ├── QRECB.h │ ├── QREncodeResult.h │ ├── QREncoder.cpp │ ├── QREncoder.h │ ├── QRErrorCorrectionLevel.cpp │ ├── QRErrorCorrectionLevel.h │ ├── QRFinderPattern.cpp │ ├── QRFinderPattern.h │ ├── QRFinderPatternFinder.cpp │ ├── QRFinderPatternFinder.h │ ├── QRFinderPatternInfo.h │ ├── QRFormatInformation.cpp │ ├── QRFormatInformation.h │ ├── QRMaskUtil.cpp │ ├── QRMaskUtil.h │ ├── QRMatrixUtil.cpp │ ├── QRMatrixUtil.h │ ├── QRReader.cpp │ ├── QRReader.h │ ├── QRVersion.cpp │ ├── QRVersion.h │ ├── QRWriter.cpp │ └── QRWriter.h │ └── textcodec │ ├── Big5MapTable.cpp │ ├── Big5MapTable.h │ ├── Big5TextDecoder.cpp │ ├── Big5TextDecoder.h │ ├── Big5TextEncoder.cpp │ ├── Big5TextEncoder.h │ ├── GBTextDecoder.cpp │ ├── GBTextDecoder.h │ ├── GBTextEncoder.cpp │ ├── GBTextEncoder.h │ ├── JPTextDecoder.cpp │ ├── JPTextDecoder.h │ ├── JPTextEncoder.cpp │ ├── JPTextEncoder.h │ ├── KRHangulMapping.cpp │ ├── KRHangulMapping.h │ ├── KRTextDecoder.cpp │ ├── KRTextDecoder.h │ ├── KRTextEncoder.cpp │ └── KRTextEncoder.h ├── include ├── slib.h └── slib │ ├── core.h │ ├── core │ ├── animation.h │ ├── app.h │ ├── array.h │ ├── array_traits.h │ ├── asm.h │ ├── asset.h │ ├── async.h │ ├── atomic.h │ ├── base.h │ ├── btree.h │ ├── cast.h │ ├── charset.h │ ├── compare.h │ ├── compile_optimize.h │ ├── console.h │ ├── content_type.h │ ├── cpp.h │ ├── definition.h │ ├── detail │ │ ├── animation.inc │ │ ├── array.inc │ │ ├── array_std.inc │ │ ├── atomic.inc │ │ ├── btree.inc │ │ ├── console.inc │ │ ├── expire.inc │ │ ├── function.inc │ │ ├── hash_map.inc │ │ ├── hash_map_std.inc │ │ ├── hash_table.inc │ │ ├── interpolation.inc │ │ ├── java.inc │ │ ├── json.inc │ │ ├── json_std.inc │ │ ├── linked_list.inc │ │ ├── linked_object.inc │ │ ├── list.inc │ │ ├── list_elements.inc │ │ ├── list_locker.inc │ │ ├── list_param.inc │ │ ├── list_std.inc │ │ ├── log.inc │ │ ├── loop_queue.inc │ │ ├── map.inc │ │ ├── map_std.inc │ │ ├── math.inc │ │ ├── parse.inc │ │ ├── promise.inc │ │ ├── ptr.inc │ │ ├── queue.inc │ │ ├── queue_channel.inc │ │ ├── red_black_tree.inc │ │ ├── ref.inc │ │ ├── safe_static.inc │ │ ├── scoped.inc │ │ ├── search.inc │ │ ├── sort.inc │ │ ├── spin_lock.inc │ │ ├── string.inc │ │ ├── string_op.inc │ │ ├── string_param.inc │ │ ├── string_view.inc │ │ ├── time.inc │ │ └── variant.inc │ ├── dispatch.h │ ├── dispatch_loop.h │ ├── endian.h │ ├── event.h │ ├── expire.h │ ├── file.h │ ├── function.h │ ├── global_unique_instance.h │ ├── hash.h │ ├── hash_map.h │ ├── hash_table.h │ ├── interpolation.h │ ├── io.h │ ├── java.h │ ├── json.h │ ├── linked_list.h │ ├── linked_object.h │ ├── list.h │ ├── locale.h │ ├── log.h │ ├── loop_queue.h │ ├── macro.h │ ├── map.h │ ├── map_common.h │ ├── math.h │ ├── memory.h │ ├── mio.h │ ├── mutex.h │ ├── new_helper.h │ ├── node_position.h │ ├── null_value.h │ ├── nullable.h │ ├── object.h │ ├── option.h │ ├── pair.h │ ├── parse.h │ ├── pipe.h │ ├── platform_android.h │ ├── platform_apple.h │ ├── platform_tizen.h │ ├── platform_windows.h │ ├── preference.h │ ├── process.h │ ├── promise.h │ ├── ptr.h │ ├── queue.h │ ├── queue_channel.h │ ├── red_black_tree.h │ ├── ref.h │ ├── regex.h │ ├── resource.h │ ├── rw_lock.h │ ├── safe_static.h │ ├── scoped.h │ ├── search.h │ ├── service.h │ ├── setting.h │ ├── singleton.h │ ├── sort.h │ ├── spin_lock.h │ ├── string.h │ ├── string16.h │ ├── string8.h │ ├── string_buffer.h │ ├── string_common.h │ ├── string_op.h │ ├── string_param.h │ ├── string_view.h │ ├── system.h │ ├── thread.h │ ├── thread_pool.h │ ├── time.h │ ├── timer.h │ ├── tuple.h │ ├── variant.h │ ├── win32_com.h │ └── xml.h │ ├── crypto.h │ ├── crypto │ ├── aes.h │ ├── base64.h │ ├── block_cipher.h │ ├── blowfish.h │ ├── chacha.h │ ├── crc32c.h │ ├── definition.h │ ├── des.h │ ├── detail │ │ ├── block_cipher.inc │ │ ├── gcm.inc │ │ ├── hash.inc │ │ └── rsa.inc │ ├── ecc.h │ ├── gcm.h │ ├── hash.h │ ├── hmac.h │ ├── jwt.h │ ├── md5.h │ ├── openssl.h │ ├── poly1305.h │ ├── rc4.h │ ├── rsa.h │ ├── sha1.h │ ├── sha2.h │ ├── tls.h │ └── zlib.h │ ├── db.h │ ├── db │ ├── constants.h │ ├── cursor.h │ ├── database.h │ ├── definition.h │ ├── expression.h │ ├── mysql.h │ ├── parameter.h │ ├── postgresql.h │ ├── redis.h │ ├── sql.h │ ├── sqlite.h │ └── statement.h │ ├── device.h │ ├── device │ ├── constants.h │ ├── definition.h │ ├── device.h │ └── sensor.h │ ├── geo.h │ ├── geo │ ├── definition.h │ ├── earth.h │ ├── geo_line.h │ ├── geo_location.h │ ├── geo_rectangle.h │ ├── globe.h │ └── latlon.h │ ├── graphics.h │ ├── graphics │ ├── bitmap.h │ ├── bitmap_data.h │ ├── bitmap_format.h │ ├── brush.h │ ├── canvas.h │ ├── color.h │ ├── constants.h │ ├── definition.h │ ├── detail │ │ ├── color.inc │ │ └── resource.inc │ ├── drawable.h │ ├── emoji.h │ ├── font.h │ ├── font_atlas.h │ ├── freetype.h │ ├── image.h │ ├── path.h │ ├── pen.h │ ├── platform.h │ ├── resource.h │ ├── text.h │ ├── util.h │ ├── yuv.h │ └── zxing.h │ ├── math.h │ ├── math │ ├── bezier.h │ ├── bigint.h │ ├── box.h │ ├── calculator.h │ ├── definition.h │ ├── detail │ │ ├── bezier.inc │ │ ├── box.inc │ │ ├── int128.inc │ │ ├── line.inc │ │ ├── line3.inc │ │ ├── line_segment.inc │ │ ├── matrix2.inc │ │ ├── matrix3.inc │ │ ├── matrix4.inc │ │ ├── plane.inc │ │ ├── quaternion.inc │ │ ├── rectangle.inc │ │ ├── sphere.inc │ │ ├── triangle.inc │ │ ├── triangle3.inc │ │ ├── vector2.inc │ │ ├── vector3.inc │ │ ├── vector4.inc │ │ └── view_frustum.inc │ ├── int128.h │ ├── line.h │ ├── line3.h │ ├── line_segment.h │ ├── matrix2.h │ ├── matrix3.h │ ├── matrix4.h │ ├── plane.h │ ├── point.h │ ├── quaternion.h │ ├── rectangle.h │ ├── size.h │ ├── sphere.h │ ├── transform2d.h │ ├── transform3d.h │ ├── triangle.h │ ├── triangle3.h │ ├── vector2.h │ ├── vector3.h │ ├── vector4.h │ └── view_frustum.h │ ├── media.h │ ├── media │ ├── audio_codec.h │ ├── audio_data.h │ ├── audio_format.h │ ├── audio_player.h │ ├── audio_recorder.h │ ├── audio_util.h │ ├── camera.h │ ├── codec_opus.h │ ├── codec_vpx.h │ ├── constants.h │ ├── definition.h │ ├── detail │ │ └── audio_util.inc │ ├── dshow.h │ ├── dsound.h │ ├── ffmpeg.h │ ├── media_player.h │ ├── opensl_es.h │ ├── video_capture.h │ ├── video_codec.h │ └── video_frame.h │ ├── network.h │ ├── network │ ├── arp.h │ ├── async.h │ ├── capture.h │ ├── constants.h │ ├── curl.h │ ├── definition.h │ ├── detail │ │ ├── ethernet.inc │ │ ├── http.inc │ │ ├── ip_address.inc │ │ ├── mac_address.inc │ │ ├── socket_address.inc │ │ ├── tcpip.inc │ │ └── url_request.inc │ ├── dns.h │ ├── ethernet.h │ ├── event.h │ ├── http.h │ ├── http_common.h │ ├── http_io.h │ ├── http_server.h │ ├── icmp.h │ ├── io.h │ ├── ip_address.h │ ├── mac_address.h │ ├── nat.h │ ├── os.h │ ├── socket.h │ ├── socket_address.h │ ├── stun.h │ ├── tcpip.h │ ├── url.h │ └── url_request.h │ ├── render.h │ ├── render │ ├── base.h │ ├── canvas.h │ ├── definition.h │ ├── drawable.h │ ├── engine.h │ ├── index_buffer.h │ ├── opengl.h │ ├── opengl_egl.h │ ├── opengl_engine.h │ ├── opengl_entries.h │ ├── opengl_glx.h │ ├── opengl_wgl.h │ ├── program.h │ ├── resource.h │ ├── texture.h │ └── vertex_buffer.h │ ├── resource.h │ ├── service.h │ ├── service │ ├── captcha.h │ ├── chat.h │ ├── chat_client.h │ ├── definition.h │ ├── fcm.h │ ├── ginger.h │ ├── push_notification.h │ ├── web.h │ └── xgpush.h │ ├── slib.h │ ├── social.h │ ├── social │ ├── alipay.h │ ├── contact.h │ ├── definition.h │ ├── ebay.h │ ├── etsy.h │ ├── facebook.h │ ├── instagram.h │ ├── linkedin.h │ ├── oauth.h │ ├── oauth_server.h │ ├── paypal.h │ ├── pinterest.h │ ├── twitter.h │ └── wechat.h │ ├── ui.h │ └── ui │ ├── adapter.h │ ├── animation.h │ ├── app.h │ ├── button.h │ ├── camera_view.h │ ├── chat_view.h │ ├── check_box.h │ ├── chromium.h │ ├── clipboard.h │ ├── collection_view.h │ ├── common_dialogs.h │ ├── constants.h │ ├── core.h │ ├── cursor.h │ ├── date_picker.h │ ├── definition.h │ ├── drawer.h │ ├── edit_view.h │ ├── event.h │ ├── gesture.h │ ├── global_event_monitor.h │ ├── grid_view.h │ ├── image_view.h │ ├── label_view.h │ ├── line_view.h │ ├── linear_view.h │ ├── list_report_view.h │ ├── list_view.h │ ├── menu.h │ ├── mobile_app.h │ ├── mobile_game.h │ ├── motion_tracker.h │ ├── notification.h │ ├── photo.h │ ├── picker_view.h │ ├── platform.h │ ├── progress_bar.h │ ├── qr_code_scanner.h │ ├── radio_button.h │ ├── refresh_view.h │ ├── render_view.h │ ├── resource.h │ ├── screen.h │ ├── screen_capture.h │ ├── scroll_bar.h │ ├── scroll_view.h │ ├── select_view.h │ ├── slider.h │ ├── split_view.h │ ├── switch_view.h │ ├── system_tray_icon.h │ ├── tab_view.h │ ├── text.h │ ├── text_view.h │ ├── toast.h │ ├── transition.h │ ├── tree_view.h │ ├── video_view.h │ ├── view.h │ ├── view_android.h │ ├── view_efl.h │ ├── view_gtk.h │ ├── view_ios.h │ ├── view_macos.h │ ├── view_page.h │ ├── view_page_navigation.h │ ├── view_pager.h │ ├── view_win32.h │ ├── web_view.h │ ├── window.h │ └── xgpush.h ├── java ├── android │ └── slib │ │ ├── platform │ │ └── android │ │ │ ├── Android.java │ │ │ ├── Logger.java │ │ │ ├── Preference.java │ │ │ ├── SlibActivity.java │ │ │ ├── app │ │ │ └── Application.java │ │ │ ├── camera │ │ │ ├── SCamera.java │ │ │ ├── SCamera1.java │ │ │ ├── SCamera2.java │ │ │ ├── SCameraInfo.java │ │ │ └── TakePhoto.java │ │ │ ├── device │ │ │ ├── Contact.java │ │ │ ├── Device.java │ │ │ ├── PhoneCall.java │ │ │ └── Sensor.java │ │ │ ├── helper │ │ │ ├── FileHelper.java │ │ │ └── Permissions.java │ │ │ ├── media │ │ │ └── SMediaPlayer.java │ │ │ ├── network │ │ │ ├── Network.java │ │ │ ├── NetworkDevice.java │ │ │ └── UrlRequest.java │ │ │ └── ui │ │ │ ├── Alert.java │ │ │ ├── Clipboard.java │ │ │ ├── Graphics.java │ │ │ ├── UiAnimation.java │ │ │ ├── UiBitmap.java │ │ │ ├── UiBrush.java │ │ │ ├── UiFont.java │ │ │ ├── UiPath.java │ │ │ ├── UiPen.java │ │ │ ├── UiThread.java │ │ │ ├── Util.java │ │ │ ├── helper │ │ │ ├── FileChooser.java │ │ │ ├── FileChooserListener.java │ │ │ └── WebViewFileChooser.java │ │ │ ├── notification │ │ │ ├── UserNotification.java │ │ │ └── UserNotificationMessage.java │ │ │ ├── view │ │ │ ├── IView.java │ │ │ ├── UiEditView.java │ │ │ ├── UiGLView.java │ │ │ ├── UiGenericView.java │ │ │ ├── UiGestureDetector.java │ │ │ ├── UiGroupView.java │ │ │ ├── UiHorizontalScrollView.java │ │ │ ├── UiRefreshView.java │ │ │ ├── UiScrollContentView.java │ │ │ ├── UiScrollView.java │ │ │ ├── UiSelectView.java │ │ │ ├── UiTextArea.java │ │ │ ├── UiTouchPoint.java │ │ │ ├── UiView.java │ │ │ └── UiWebView.java │ │ │ └── window │ │ │ └── UiWindow.java │ │ └── util │ │ ├── Charsets.java │ │ ├── NumberFormator.java │ │ ├── Time.java │ │ └── io │ │ └── ByteBufferInputStream.java ├── android_alipay │ └── slib │ │ └── platform │ │ └── android │ │ └── alipay │ │ └── Alipay.java ├── android_call │ └── slib │ │ └── platform │ │ └── android │ │ └── call │ │ └── CallService.java ├── android_facebook │ └── slib │ │ └── platform │ │ └── android │ │ └── facebook │ │ ├── Facebook.java │ │ └── FacebookToken.java ├── android_fcm │ └── slib │ │ └── platform │ │ └── android │ │ └── fcm │ │ ├── FCM.java │ │ └── NotificationService.java ├── android_wechat │ └── slib │ │ └── platform │ │ └── android │ │ └── wechat │ │ ├── WeChat.java │ │ └── WeChatResponseActivity.java └── android_xgpush │ └── slib │ └── platform │ └── android │ └── xgpush │ ├── MessageReceiver.java │ └── XgPush.java ├── licenses ├── FFmpeg.txt ├── FreeType.txt ├── Libjpeg.txt ├── OpenGL.txt ├── OpenSSL.txt ├── Opus.txt ├── PostgreSQL.txt ├── SQLite.txt ├── ShortcutBadger.txt ├── cairo.txt ├── curl.txt ├── ginger.txt ├── glib.txt ├── gtk.txt ├── hiredis.txt ├── icu4c.txt ├── kvazaar.txt ├── lame.txt ├── libcef.txt ├── libgd.txt ├── libmariadb.txt ├── libpcap.txt ├── libpng.txt ├── libvpx.txt ├── noto-emoji.txt ├── openh264.txt ├── pango.txt ├── stb.txt ├── yasm.txt ├── zlib.txt └── zxing.txt ├── setup-path ├── setup-path.bat ├── src ├── res │ ├── .gitignore │ ├── gen │ │ ├── colors.cpp │ │ ├── colors.h │ │ ├── drawables.cpp │ │ ├── drawables.h │ │ ├── layouts.cpp │ │ ├── layouts.h │ │ ├── layouts_base.h │ │ ├── menus.cpp │ │ ├── menus.h │ │ ├── raw │ │ │ ├── image_camera_view_control_flash_auto_png.inc │ │ │ ├── image_camera_view_control_flash_off_png.inc │ │ │ ├── image_camera_view_control_flash_on_png.inc │ │ │ ├── image_camera_view_control_switch_png.inc │ │ │ └── image_round_shadow_back_png.inc │ │ ├── raws.cpp │ │ ├── raws.h │ │ ├── resources.h │ │ ├── strings.cpp │ │ ├── strings.h │ │ └── ui │ │ │ ├── CameraControlView.cpp.inc │ │ │ ├── CameraControlView.h │ │ │ ├── MenuPopup.cpp.inc │ │ │ ├── MenuPopup.h │ │ │ ├── MobileAlertDialog.cpp.inc │ │ │ ├── MobileAlertDialog.h │ │ │ ├── TakePhotoFromCameraDialog.cpp.inc │ │ │ └── TakePhotoFromCameraDialog.h │ ├── global │ │ ├── colors.xml │ │ ├── menus.xml │ │ ├── strings.xml │ │ ├── strings_ko-KP.xml │ │ ├── strings_ko.xml │ │ └── strings_zh.xml │ ├── image │ │ ├── camera_view_control_flash_auto.png │ │ ├── camera_view_control_flash_off.png │ │ ├── camera_view_control_flash_on.png │ │ ├── camera_view_control_switch.png │ │ └── round_shadow_back.png │ ├── sapp.xml │ └── ui │ │ ├── CameraControlView.xml │ │ ├── MenuPopup.xml │ │ ├── MobileAlertDialog.xml │ │ └── TakePhotoFromCameraDialog.xml ├── sapp │ ├── sapp.h │ ├── sapp_document.cpp │ ├── sapp_document.h │ ├── sapp_document_color.inc │ ├── sapp_document_drawable.inc │ ├── sapp_document_layout.inc │ ├── sapp_document_menu.inc │ ├── sapp_document_raw.inc │ ├── sapp_document_string.inc │ ├── sapp_resources.cpp │ ├── sapp_resources.h │ ├── sapp_util.cpp │ ├── sapp_util.h │ ├── sapp_values.cpp │ └── sapp_values.h └── slib │ ├── core │ ├── animation.cpp │ ├── app.cpp │ ├── app_android.cpp │ ├── asm_x64.cpp │ ├── asset.cpp │ ├── async.cpp │ ├── async_config.h │ ├── async_epoll.cpp │ ├── async_iocp.cpp │ ├── async_kqueue.cpp │ ├── async_win32.cpp │ ├── atomic.cpp │ ├── base.cpp │ ├── charset.cpp │ ├── charset_android.cpp │ ├── charset_apple.mm │ ├── charset_ext.cpp │ ├── charset_icu.cpp │ ├── charset_windows.cpp │ ├── collection.cpp │ ├── console.cpp │ ├── console_unix.cpp │ ├── console_windows.cpp │ ├── content_type.cpp │ ├── dispatch.cpp │ ├── event.cpp │ ├── event_unix.cpp │ ├── event_windows.cpp │ ├── file.cpp │ ├── file_unix.cpp │ ├── file_win32.cpp │ ├── global_unique_instance.cpp │ ├── global_unique_instance_unix.cpp │ ├── global_unique_instance_win32.cpp │ ├── hash.cpp │ ├── io.cpp │ ├── java.cpp │ ├── json.cpp │ ├── list.cpp │ ├── locale.cpp │ ├── locale_apple.mm │ ├── log.cpp │ ├── math.cpp │ ├── memory.cpp │ ├── mutex.cpp │ ├── object.cpp │ ├── parse.cpp │ ├── pipe.cpp │ ├── pipe_unix.cpp │ ├── pipe_windows.cpp │ ├── platform_android.cpp │ ├── platform_apple.mm │ ├── platform_tizen.cpp │ ├── platform_windows.cpp │ ├── preference.cpp │ ├── preference_android.cpp │ ├── preference_apple.mm │ ├── preference_linux.cpp │ ├── preference_tizen.cpp │ ├── preference_win32.cpp │ ├── process.cpp │ ├── process_macos.mm │ ├── process_unix.cpp │ ├── process_windows.cpp │ ├── red_black_tree.cpp │ ├── ref.cpp │ ├── regex.cpp │ ├── resource.cpp │ ├── rw_lock.cpp │ ├── service.cpp │ ├── setting.cpp │ ├── spin_lock.cpp │ ├── string.cpp │ ├── string_buffer.cpp │ ├── string_op.cpp │ ├── string_param.cpp │ ├── string_view.cpp │ ├── system.cpp │ ├── system_android.cpp │ ├── system_apple.mm │ ├── system_unix.cpp │ ├── system_windows.cpp │ ├── thread.cpp │ ├── thread_apple.mm │ ├── thread_pool.cpp │ ├── thread_unix.cpp │ ├── thread_windows.cpp │ ├── time.cpp │ ├── time_unix.cpp │ ├── time_windows.cpp │ ├── timer.cpp │ ├── variant.cpp │ ├── win32_com.cpp │ ├── wrap_memcpy.cpp │ └── xml.cpp │ ├── crypto │ ├── aes.cpp │ ├── base64.cpp │ ├── block_cipher.cpp │ ├── blowfish.cpp │ ├── chacha.cpp │ ├── compress_zlib.cpp │ ├── crc32c.cpp │ ├── des.cpp │ ├── ecc.cpp │ ├── ecc_secp256k1.inc │ ├── gcm.cpp │ ├── jwt.cpp │ ├── jwt_openssl.cpp │ ├── md5.cpp │ ├── openssl.cpp │ ├── openssl_chacha_poly1305.cpp │ ├── openssl_crypto.cpp │ ├── poly1305.cpp │ ├── rc4.cpp │ ├── rsa.cpp │ ├── sha1.cpp │ ├── sha2.cpp │ └── tls.cpp │ ├── db │ ├── database.cpp │ ├── database_cursor.cpp │ ├── database_expression.cpp │ ├── database_sql.cpp │ ├── database_statement.cpp │ ├── mysql.cpp │ ├── postgresql.cpp │ ├── redis.cpp │ └── sqlite.cpp │ ├── device │ ├── device.cpp │ ├── device_android.cpp │ ├── device_audio_ios.mm │ ├── device_contacts_ios.mm │ ├── device_id_macos.mm │ ├── device_ios.mm │ ├── device_linux.cpp │ ├── device_macos.mm │ ├── device_tizen.cpp │ ├── device_win32.cpp │ ├── sensor.cpp │ ├── sensor_android.cpp │ └── sensor_ios.mm │ ├── geo │ ├── earth.cpp │ ├── geo_line.cpp │ ├── geo_location.cpp │ ├── geo_rectangle.cpp │ ├── globe.cpp │ └── latlon.cpp │ ├── graphics │ ├── bitmap.cpp │ ├── bitmap_android.cpp │ ├── bitmap_cairo.cpp │ ├── bitmap_data.cpp │ ├── bitmap_ext.cpp │ ├── bitmap_format.cpp │ ├── bitmap_gdi.cpp │ ├── bitmap_quartz.mm │ ├── brush.cpp │ ├── brush_android.cpp │ ├── brush_gdi.cpp │ ├── brush_quartz.mm │ ├── canvas.cpp │ ├── canvas_android.cpp │ ├── canvas_cairo.cpp │ ├── canvas_ext.cpp │ ├── canvas_gdi.cpp │ ├── canvas_quartz.mm │ ├── color.cpp │ ├── drawable.cpp │ ├── drawable_android.cpp │ ├── drawable_cairo.cpp │ ├── drawable_ext.cpp │ ├── drawable_gdi.cpp │ ├── drawable_quartz.mm │ ├── emoji.cpp │ ├── emoji_png.cpp │ ├── font.cpp │ ├── font_android.cpp │ ├── font_atlas.cpp │ ├── font_cairo.cpp │ ├── font_freetype.cpp │ ├── font_gdi.cpp │ ├── font_quartz.mm │ ├── graphics_path.cpp │ ├── graphics_path_android.cpp │ ├── graphics_path_gdi.cpp │ ├── graphics_path_quartz.mm │ ├── graphics_platform_apple.mm │ ├── graphics_platform_win32.cpp │ ├── graphics_resource.cpp │ ├── graphics_text.cpp │ ├── graphics_util.cpp │ ├── image.cpp │ ├── image_jpeg.cpp │ ├── image_png.cpp │ ├── image_stb.cpp │ ├── pen.cpp │ ├── pen_android.cpp │ ├── pen_gdi.cpp │ ├── yuv.cpp │ └── zxing.cpp │ ├── math │ ├── bezier.cpp │ ├── bigint.cpp │ ├── box.cpp │ ├── calculator.cpp │ ├── int128.cpp │ ├── line.cpp │ ├── line3.cpp │ ├── line_segment.cpp │ ├── matrix2.cpp │ ├── matrix3.cpp │ ├── matrix4.cpp │ ├── plane.cpp │ ├── quaternion.cpp │ ├── rectangle.cpp │ ├── sphere.cpp │ ├── transform2d.cpp │ ├── transform3d.cpp │ ├── triangle.cpp │ ├── triangle3.cpp │ ├── vector2.cpp │ ├── vector3.cpp │ ├── vector4.cpp │ └── view_frustum.cpp │ ├── media │ ├── audio_codec.cpp │ ├── audio_data.cpp │ ├── audio_format.cpp │ ├── audio_player.cpp │ ├── audio_player_android.cpp │ ├── audio_player_dsound.cpp │ ├── audio_player_ios.mm │ ├── audio_player_macos.mm │ ├── audio_player_opensl_es.cpp │ ├── audio_player_win32.cpp │ ├── audio_recorder.cpp │ ├── audio_recorder_android.cpp │ ├── audio_recorder_dsound.cpp │ ├── audio_recorder_ios.mm │ ├── audio_recorder_macos.mm │ ├── audio_recorder_opensl_es.cpp │ ├── audio_recorder_win32.cpp │ ├── audio_util.cpp │ ├── camera.cpp │ ├── camera_android.cpp │ ├── camera_apple.mm │ ├── camera_dshow.cpp │ ├── camera_win32.cpp │ ├── codec_opus.cpp │ ├── codec_vpx.cpp │ ├── media_platform_macos.h │ ├── media_platform_macos.mm │ ├── media_player.cpp │ ├── media_player_android.cpp │ ├── media_player_apple.mm │ ├── media_player_ffmpeg.cpp │ ├── media_player_tizen.cpp │ ├── media_player_win32.cpp │ ├── video_capture.cpp │ ├── video_codec.cpp │ └── video_frame.cpp │ ├── network │ ├── arp.cpp │ ├── dns.cpp │ ├── ethernet.cpp │ ├── http_common.cpp │ ├── http_io.cpp │ ├── http_openssl.cpp │ ├── http_server.cpp │ ├── icmp.cpp │ ├── ip_address.cpp │ ├── mac_address.cpp │ ├── nat.cpp │ ├── net_capture.cpp │ ├── net_capture_pcap.cpp │ ├── network_async.cpp │ ├── network_async.h │ ├── network_async_unix.cpp │ ├── network_async_win32.cpp │ ├── network_io.cpp │ ├── network_os.cpp │ ├── socket.cpp │ ├── socket_address.cpp │ ├── socket_event.cpp │ ├── socket_event_unix.cpp │ ├── socket_event_win32.cpp │ ├── stun.cpp │ ├── tcpip.cpp │ ├── url.cpp │ ├── url_request.cpp │ ├── url_request_android.cpp │ ├── url_request_apple.mm │ ├── url_request_common.inc │ ├── url_request_curl.cpp │ ├── url_request_param.cpp │ └── url_request_win32.cpp │ ├── render │ ├── index_buffer.cpp │ ├── opengl_egl.cpp │ ├── opengl_egl_entries.h │ ├── opengl_gl.cpp │ ├── opengl_gl.h │ ├── opengl_gles.cpp │ ├── opengl_gles.h │ ├── opengl_glx.cpp │ ├── opengl_impl.h │ ├── opengl_wgl.cpp │ ├── render_base.cpp │ ├── render_canvas.cpp │ ├── render_drawable.cpp │ ├── render_engine.cpp │ ├── render_program.cpp │ ├── render_resource.cpp │ ├── texture.cpp │ └── vertex_buffer.cpp │ ├── resources.h │ ├── service │ ├── captcha.cpp │ ├── chat.cpp │ ├── chat_client.cpp │ ├── chat_sqlite.cpp │ ├── fcm_service.cpp │ ├── ginger.cpp │ ├── push_notification.cpp │ ├── web_service.cpp │ └── xgpush_service.cpp │ ├── social │ ├── alipay.cpp │ ├── alipay_android.cpp │ ├── alipay_ios.mm │ ├── alipay_openssl.cpp │ ├── alipay_sdk.cpp │ ├── contact.cpp │ ├── ebay.cpp │ ├── etsy.cpp │ ├── etsy_ui.cpp │ ├── facebook.cpp │ ├── facebook_android.cpp │ ├── facebook_ios.mm │ ├── facebook_sdk.cpp │ ├── facebook_ui.cpp │ ├── instagram.cpp │ ├── instagram_android.cpp │ ├── instagram_ios.mm │ ├── linkedin.cpp │ ├── linkedin_ui.cpp │ ├── oauth.cpp │ ├── oauth_server.cpp │ ├── oauth_server_openssl.cpp │ ├── oauth_ui.cpp │ ├── paypal.cpp │ ├── paypal_ui.cpp │ ├── pinterest.cpp │ ├── pinterest_ui.cpp │ ├── twitter.cpp │ ├── wechat.cpp │ ├── wechat_android.cpp │ ├── wechat_ios.mm │ └── wechat_sdk.cpp │ └── ui │ ├── button.cpp │ ├── button_macos.h │ ├── button_macos.mm │ ├── button_win32.cpp │ ├── button_win32.h │ ├── camera_view.cpp │ ├── chat_view.cpp │ ├── check_box.cpp │ ├── check_box_macos.mm │ ├── check_box_win32.cpp │ ├── chromium.cpp │ ├── chromium_macos.mm │ ├── clipboard.cpp │ ├── clipboard_android.cpp │ ├── clipboard_gtk.cpp │ ├── clipboard_ios.mm │ ├── clipboard_macos.mm │ ├── clipboard_win32.cpp │ ├── collection_view.cpp │ ├── common_dialogs.cpp │ ├── common_dialogs_android.cpp │ ├── common_dialogs_efl.cpp │ ├── common_dialogs_gtk.cpp │ ├── common_dialogs_ios.mm │ ├── common_dialogs_macos.mm │ ├── common_dialogs_win32.cpp │ ├── cursor.cpp │ ├── cursor_macos.mm │ ├── cursor_win32.cpp │ ├── date_picker.cpp │ ├── date_picker_macos.mm │ ├── date_picker_win32.cpp │ ├── drawer.cpp │ ├── edit_view.cpp │ ├── edit_view_android.cpp │ ├── edit_view_efl.cpp │ ├── edit_view_ios.mm │ ├── edit_view_macos.mm │ ├── edit_view_win32.cpp │ ├── gesture.cpp │ ├── global_event_monitor.cpp │ ├── global_event_monitor_macos.mm │ ├── global_event_monitor_win32.cpp │ ├── grid_view.cpp │ ├── image_view.cpp │ ├── image_view_url.cpp │ ├── label_view.cpp │ ├── line_view.cpp │ ├── linear_view.cpp │ ├── list_report_view.cpp │ ├── list_report_view_macos.mm │ ├── list_report_view_win32.cpp │ ├── list_view.cpp │ ├── mobile_app.cpp │ ├── mobile_game.cpp │ ├── motion_tracker.cpp │ ├── picker_view.cpp │ ├── picker_view_ios.mm │ ├── progress_bar.cpp │ ├── qr_code_scanner.cpp │ ├── radio_button.cpp │ ├── radio_button_macos.mm │ ├── radio_button_win32.cpp │ ├── refresh_view.cpp │ ├── refresh_view_android.cpp │ ├── refresh_view_ios.mm │ ├── render_view.cpp │ ├── render_view_android.cpp │ ├── render_view_efl.cpp │ ├── render_view_gtk.cpp │ ├── render_view_ios.mm │ ├── render_view_macos.mm │ ├── render_view_win32.cpp │ ├── screen_capture.cpp │ ├── screen_capture_macos.mm │ ├── screen_capture_win32.cpp │ ├── scroll_bar.cpp │ ├── scroll_view.cpp │ ├── scroll_view_android.cpp │ ├── scroll_view_ios.mm │ ├── scroll_view_macos.mm │ ├── scroll_view_win32.cpp │ ├── select_view.cpp │ ├── select_view_android.cpp │ ├── select_view_ios.mm │ ├── select_view_macos.mm │ ├── select_view_win32.cpp │ ├── slider.cpp │ ├── split_view.cpp │ ├── switch_view.cpp │ ├── system_tray_icon.cpp │ ├── system_tray_icon_macos.mm │ ├── system_tray_icon_win32.cpp │ ├── tab_view.cpp │ ├── tab_view_macos.mm │ ├── tab_view_win32.cpp │ ├── text_view.cpp │ ├── toast.cpp │ ├── transition.cpp │ ├── tree_view.cpp │ ├── ui_adapter.cpp │ ├── ui_animation.cpp │ ├── ui_animation.h │ ├── ui_animation_android.cpp │ ├── ui_animation_apple.mm │ ├── ui_app.cpp │ ├── ui_core.cpp │ ├── ui_core_android.cpp │ ├── ui_core_badge_ios.mm │ ├── ui_core_common.cpp │ ├── ui_core_common.h │ ├── ui_core_efl.cpp │ ├── ui_core_gtk.cpp │ ├── ui_core_ios.mm │ ├── ui_core_macos.mm │ ├── ui_core_win32.cpp │ ├── ui_core_win32.h │ ├── ui_event.cpp │ ├── ui_event_android.cpp │ ├── ui_event_efl.cpp │ ├── ui_event_gtk.cpp │ ├── ui_event_ios.mm │ ├── ui_event_macos.mm │ ├── ui_event_win32.cpp │ ├── ui_menu.cpp │ ├── ui_menu_macos.mm │ ├── ui_menu_win32.cpp │ ├── ui_notification.cpp │ ├── ui_notification_android.cpp │ ├── ui_notification_apns_ios.mm │ ├── ui_notification_apple.mm │ ├── ui_notification_fcm.cpp │ ├── ui_notification_fcm_android.cpp │ ├── ui_notification_fcm_ios.mm │ ├── ui_notification_xgpush.cpp │ ├── ui_notification_xgpush_android.cpp │ ├── ui_notification_xgpush_ios.mm │ ├── ui_photo.cpp │ ├── ui_photo_android.cpp │ ├── ui_photo_ios.mm │ ├── ui_platform.cpp │ ├── ui_resource.cpp │ ├── ui_text.cpp │ ├── ui_text_ios.h │ ├── ui_text_ios.mm │ ├── ui_text_macos.h │ ├── ui_text_macos.mm │ ├── video_view.cpp │ ├── view.cpp │ ├── view_android.cpp │ ├── view_android.h │ ├── view_efl.cpp │ ├── view_efl.h │ ├── view_gtk.cpp │ ├── view_gtk.h │ ├── view_ios.h │ ├── view_ios.mm │ ├── view_macos.h │ ├── view_macos.mm │ ├── view_page.cpp │ ├── view_page_navigation.cpp │ ├── view_pager.cpp │ ├── view_win32.cpp │ ├── view_win32.h │ ├── web_view.cpp │ ├── web_view_android.cpp │ ├── web_view_apple.mm │ ├── web_view_win32.cpp │ ├── window.cpp │ ├── window_android.cpp │ ├── window_efl.cpp │ ├── window_gtk.cpp │ ├── window_ios.mm │ ├── window_macos.mm │ └── window_win32.cpp └── tool ├── bin ├── .gitignore ├── new-slib-app-android ├── new-slib-app-android.bat ├── new-slib-app-desktop ├── new-slib-app-desktop.bat ├── new-slib-app-ios ├── new-slib-app-linux ├── new-slib-app-macos ├── new-slib-app-mobile ├── new-slib-app-mobile.bat ├── new-slib-app-win32.bat ├── new-slib-console-linux ├── new-slib-console-macos ├── new-slib-console-win32.bat ├── sapp ├── sapp_old.bat └── yasm ├── build-app-cmake-debug.sh ├── build-app-cmake-release.sh ├── build-app-cmake.sh ├── slib-app.cmake ├── src ├── AddCopyrightNotice │ ├── main.cpp │ ├── util.cpp │ └── util.h ├── FindSymbols │ ├── .gitignore │ ├── FindSymbols.sln │ ├── FindSymbols.vcxproj │ ├── FindSymbols.vcxproj.filters │ └── main.cpp ├── GenerateEllipticCurvePow2G │ └── main.cpp ├── GenerateEmojiList │ └── main.cpp ├── ReplaceTextInFile │ ├── .gitignore │ ├── ReplaceTextInFile.vcxproj │ ├── ReplaceTextInFile.vcxproj.filters │ └── main.cpp └── sapp │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── slib1024.png │ │ ├── slib128.png │ │ ├── slib16.png │ │ ├── slib256-1.png │ │ ├── slib256.png │ │ ├── slib32-1.png │ │ ├── slib32.png │ │ ├── slib512-1.png │ │ ├── slib512.png │ │ └── slib64.png │ └── Contents.json │ ├── Info.plist │ ├── MainMenu.xib │ ├── main.cpp │ └── sapp.entitlements └── template ├── Android ├── .gitignore ├── app │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ └── native-lib.cpp │ │ ├── java │ │ └── MainActivity.java │ │ └── res │ │ ├── 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 ├── Linux-console ├── .gitignore ├── CMakeLists.txt ├── cmake-debug.sh └── cmake-release.sh ├── Linux ├── .gitignore ├── CMakeLists.txt ├── cmake-debug.sh ├── cmake-release.sh └── main.cpp ├── Win32-console ├── .gitignore ├── SLIB_TEMPLATE_APP_NAME.sln ├── SLIB_TEMPLATE_APP_NAME.vcxproj └── SLIB_TEMPLATE_APP_NAME.vcxproj.filters ├── Win32 ├── .gitignore ├── SLIB_TEMPLATE_APP_NAME.sln ├── SLIB_TEMPLATE_APP_NAME.vcxproj ├── SLIB_TEMPLATE_APP_NAME.vcxproj.filters └── main.cpp ├── console └── main.cpp ├── desktop-sapp ├── Win32 │ ├── .gitignore │ ├── SLIB_TEMPLATE_APP_NAME.sln │ ├── SLIB_TEMPLATE_APP_NAME.vcxproj │ ├── SLIB_TEMPLATE_APP_NAME.vcxproj.filters │ └── main.cpp ├── macOS │ ├── .gitignore │ ├── Project.xcodeproj │ │ └── project.pbxproj │ └── project │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ └── main.mm └── src │ ├── .gitignore │ ├── cpp │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── app.cpp │ └── app.h │ ├── sapp │ ├── .sapp.conf │ ├── global │ │ ├── colors.xml │ │ ├── include.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── units.xml │ ├── image │ │ └── slib_icon.png │ ├── sapp.xml │ └── ui │ │ └── MainWindow.xml │ └── template_gen │ ├── colors.cpp │ ├── colors.h │ ├── drawables.cpp │ ├── drawables.h │ ├── layouts.cpp │ ├── layouts.h │ ├── layouts_base.h │ ├── menus.cpp │ ├── menus.h │ ├── raw │ └── image_slib_icon_png.inc │ ├── raws.cpp │ ├── raws.h │ ├── resources.h │ ├── strings.cpp │ ├── strings.h │ └── ui │ ├── MainWindow.cpp.inc │ └── MainWindow.h ├── desktop ├── app.cpp └── app.h ├── iOS ├── .gitignore ├── Project.xcodeproj │ └── project.pbxproj └── project │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.mm ├── macOS-console ├── .gitignore └── Project.xcodeproj │ └── project.pbxproj ├── macOS ├── .gitignore ├── Project.xcodeproj │ └── project.pbxproj └── project │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── MainMenu.xib │ ├── Info.plist │ └── main.mm ├── mobile-sapp ├── Android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ └── native-lib.cpp │ │ │ ├── java │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── 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 ├── iOS │ ├── .gitignore │ ├── Project.xcodeproj │ │ └── project.pbxproj │ └── project │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.mm └── src │ ├── .gitignore │ ├── cpp │ ├── LaunchScreen.cpp │ ├── LaunchScreen.h │ ├── MainPage.cpp │ ├── MainPage.h │ ├── app.cpp │ └── app.h │ ├── sapp │ ├── .sapp.conf │ ├── global │ │ ├── colors.xml │ │ ├── include.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── units.xml │ ├── image │ │ └── slib_icon.png │ ├── sapp.xml │ └── ui │ │ ├── LaunchScreen.xml │ │ └── MainPage.xml │ └── template_gen │ ├── colors.cpp │ ├── colors.h │ ├── drawables.cpp │ ├── drawables.h │ ├── layouts.cpp │ ├── layouts.h │ ├── layouts_base.h │ ├── menus.cpp │ ├── menus.h │ ├── raw │ └── image_slib_icon_png.inc │ ├── raws.cpp │ ├── raws.h │ ├── resources.h │ ├── strings.cpp │ ├── strings.h │ └── ui │ ├── LaunchScreen.cpp.inc │ ├── LaunchScreen.h │ ├── MainPage.cpp.inc │ └── MainPage.h └── mobile ├── app.cpp └── app.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | 4 | /lib 5 | /bin 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/README.md -------------------------------------------------------------------------------- /archive-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/archive-lib -------------------------------------------------------------------------------- /examples/ARC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/ARC/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ARC/Example-ARC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/ARC/Example-ARC.sln -------------------------------------------------------------------------------- /examples/ARC/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/ARC/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/ARC/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/ARC/main.cpp -------------------------------------------------------------------------------- /examples/Android/JNI/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Android/JNI/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/Android/JNI/gradlew -------------------------------------------------------------------------------- /examples/Android/JNI/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Example-JNI' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/Android/PhoneCall/project/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Android/PhoneCall/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/Containers/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Containers/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Containers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/Containers/main.cpp -------------------------------------------------------------------------------- /examples/Crypt/3DES/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Crypt/3DES/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/Crypt/3DES/main.cpp -------------------------------------------------------------------------------- /examples/Crypt/AES/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Crypt/AES/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/Crypt/AES/main.cpp -------------------------------------------------------------------------------- /examples/Database/MySQL/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Database/PostgreSQL/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Database/Redis/Linux/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Database/Redis/Linux/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Database/Redis/Linux/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Database/Redis/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Database/SQLite/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Device/Contact/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Device/Contact/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Device/Contact/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/Device/Sensor/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Device/Sensor/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Network/HttpServer/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Network/HttpServer/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Network/Ping/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Network/Ping/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Network/Ping/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/Network/Ping/main.cpp -------------------------------------------------------------------------------- /examples/Network/UdpHolepuching/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/Network/UdpHolepuching/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/PushNotification/FCM/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/PushNotification/FCM/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ -------------------------------------------------------------------------------- /examples/PushNotification/XgPush/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/PushNotification/XgPush/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Social/Alipay/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Social/Alipay/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Social/Alipay/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/Social/OAuth/Client/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/Social/OAuth/Client/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Social/OAuth/Client/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/Social/Wechat/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/Social/Wechat/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/Social/Wechat/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/UI/CameraView/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/UI/CameraView/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | Debug 4 | Release 5 | x64 6 | -------------------------------------------------------------------------------- /examples/UI/ChromiumView (sapp)/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/UI/ChromiumView (sapp)/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/UI/ChromiumView (sapp)/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/ChromiumView/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/UI/ChromiumView/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/ChromiumView/macOS/helper/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/DragAndDrop/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/UI/DragAndDrop/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/DragAndDrop/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/UI/FFmpegPlayer/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/ImageView/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/UI/ImageView/Linux/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/UI/ImageView/Linux/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/UI/ImageView/Linux/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /examples/UI/ImageView/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/UI/ImageView/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | project.xcworkspace/ 2 | xcuserdata/ 3 | -------------------------------------------------------------------------------- /examples/UI/ImageView/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/QRCode/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/UI/QRCode/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'QRCodeExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/UI/QRCode/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/QRCode/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/UI/QRCode/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/UI/QRCode/src/app.cpp -------------------------------------------------------------------------------- /examples/UI/QRCode/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/UI/QRCode/src/app.h -------------------------------------------------------------------------------- /examples/UI/WebView/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/UI/WebView/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ExampleWebView' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/UI/WebView/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /examples/UI/WebView/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | project.xcworkspace/ 2 | xcuserdata/ 3 | -------------------------------------------------------------------------------- /examples/UI/WebView/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/UI/WebView/src/app.h -------------------------------------------------------------------------------- /examples/sapp/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /examples/sapp/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/sapp/Android/gradlew -------------------------------------------------------------------------------- /examples/sapp/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SAppExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /examples/sapp/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /examples/sapp/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /examples/sapp/src/cpp/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/sapp/src/cpp/app.cpp -------------------------------------------------------------------------------- /examples/sapp/src/cpp/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/examples/sapp/src/cpp/app.h -------------------------------------------------------------------------------- /external/external.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/external.txt -------------------------------------------------------------------------------- /external/include/X11/ImUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/ImUtil.h -------------------------------------------------------------------------------- /external/include/X11/X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/X.h -------------------------------------------------------------------------------- /external/include/X11/XKBlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/XKBlib.h -------------------------------------------------------------------------------- /external/include/X11/XWDFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/XWDFile.h -------------------------------------------------------------------------------- /external/include/X11/Xalloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xalloca.h -------------------------------------------------------------------------------- /external/include/X11/Xarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xarch.h -------------------------------------------------------------------------------- /external/include/X11/Xatom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xatom.h -------------------------------------------------------------------------------- /external/include/X11/Xauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xauth.h -------------------------------------------------------------------------------- /external/include/X11/Xcms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xcms.h -------------------------------------------------------------------------------- /external/include/X11/Xdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xdefs.h -------------------------------------------------------------------------------- /external/include/X11/Xfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xfuncs.h -------------------------------------------------------------------------------- /external/include/X11/Xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xlib.h -------------------------------------------------------------------------------- /external/include/X11/Xlibint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xlibint.h -------------------------------------------------------------------------------- /external/include/X11/Xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xlocale.h -------------------------------------------------------------------------------- /external/include/X11/Xmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xmd.h -------------------------------------------------------------------------------- /external/include/X11/Xos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xos.h -------------------------------------------------------------------------------- /external/include/X11/Xos_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xos_r.h -------------------------------------------------------------------------------- /external/include/X11/Xosdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xosdefs.h -------------------------------------------------------------------------------- /external/include/X11/Xpoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xpoll.h -------------------------------------------------------------------------------- /external/include/X11/Xproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xproto.h -------------------------------------------------------------------------------- /external/include/X11/Xregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xregion.h -------------------------------------------------------------------------------- /external/include/X11/Xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/Xutil.h -------------------------------------------------------------------------------- /external/include/X11/keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/X11/keysym.h -------------------------------------------------------------------------------- /external/include/cairo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/cairo/COPYING -------------------------------------------------------------------------------- /external/include/cairo/cairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/cairo/cairo.h -------------------------------------------------------------------------------- /external/include/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/COPYING -------------------------------------------------------------------------------- /external/include/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/README -------------------------------------------------------------------------------- /external/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/curl.h -------------------------------------------------------------------------------- /external/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/easy.h -------------------------------------------------------------------------------- /external/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/multi.h -------------------------------------------------------------------------------- /external/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/curl/system.h -------------------------------------------------------------------------------- /external/include/ffmpeg/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/ffmpeg/avio.h -------------------------------------------------------------------------------- /external/include/ffmpeg/version.txt: -------------------------------------------------------------------------------- 1 | 4.1.1 2 | -------------------------------------------------------------------------------- /external/include/gl/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gl/EGL/egl.h -------------------------------------------------------------------------------- /external/include/gl/GL/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gl/GL/gl3.h -------------------------------------------------------------------------------- /external/include/gl/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gl/GL/glext.h -------------------------------------------------------------------------------- /external/include/gl/GLX/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gl/GLX/gl.h -------------------------------------------------------------------------------- /external/include/gl/GLX/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gl/GLX/glx.h -------------------------------------------------------------------------------- /external/include/glib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/glib/COPYING -------------------------------------------------------------------------------- /external/include/glib/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/glib/glib.h -------------------------------------------------------------------------------- /external/include/gtk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gtk/COPYING -------------------------------------------------------------------------------- /external/include/gtk/atk/atk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gtk/atk/atk.h -------------------------------------------------------------------------------- /external/include/gtk/cairo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gtk/cairo.h -------------------------------------------------------------------------------- /external/include/gtk/gdk/gdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gtk/gdk/gdk.h -------------------------------------------------------------------------------- /external/include/gtk/gtk/gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/gtk/gtk/gtk.h -------------------------------------------------------------------------------- /external/include/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/hiredis/net.h -------------------------------------------------------------------------------- /external/include/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/hiredis/sds.h -------------------------------------------------------------------------------- /external/include/lame/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/lame/COPYING -------------------------------------------------------------------------------- /external/include/lame/lame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/lame/lame.h -------------------------------------------------------------------------------- /external/include/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/libpng/png.h -------------------------------------------------------------------------------- /external/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/aes.h -------------------------------------------------------------------------------- /external/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/bio.h -------------------------------------------------------------------------------- /external/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/bn.h -------------------------------------------------------------------------------- /external/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/cms.h -------------------------------------------------------------------------------- /external/include/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/ct.h -------------------------------------------------------------------------------- /external/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/des.h -------------------------------------------------------------------------------- /external/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/dh.h -------------------------------------------------------------------------------- /external/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/dsa.h -------------------------------------------------------------------------------- /external/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/ec.h -------------------------------------------------------------------------------- /external/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/err.h -------------------------------------------------------------------------------- /external/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/evp.h -------------------------------------------------------------------------------- /external/include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/kdf.h -------------------------------------------------------------------------------- /external/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/md2.h -------------------------------------------------------------------------------- /external/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/md4.h -------------------------------------------------------------------------------- /external/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/md5.h -------------------------------------------------------------------------------- /external/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/pem.h -------------------------------------------------------------------------------- /external/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/rc2.h -------------------------------------------------------------------------------- /external/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/rc4.h -------------------------------------------------------------------------------- /external/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/rc5.h -------------------------------------------------------------------------------- /external/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/rsa.h -------------------------------------------------------------------------------- /external/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/sha.h -------------------------------------------------------------------------------- /external/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/srp.h -------------------------------------------------------------------------------- /external/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/ssl.h -------------------------------------------------------------------------------- /external/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/ts.h -------------------------------------------------------------------------------- /external/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/openssl/ui.h -------------------------------------------------------------------------------- /external/include/opus/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/opus/opus.h -------------------------------------------------------------------------------- /external/include/pango/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pango/COPYING -------------------------------------------------------------------------------- /external/include/pango/pango.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pango/pango.h -------------------------------------------------------------------------------- /external/include/pcap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/LICENSE -------------------------------------------------------------------------------- /external/include/pcap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/README -------------------------------------------------------------------------------- /external/include/pcap/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/bpf.h -------------------------------------------------------------------------------- /external/include/pcap/dlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/dlt.h -------------------------------------------------------------------------------- /external/include/pcap/ipnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/ipnet.h -------------------------------------------------------------------------------- /external/include/pcap/namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/namedb.h -------------------------------------------------------------------------------- /external/include/pcap/nflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/nflog.h -------------------------------------------------------------------------------- /external/include/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/pcap.h -------------------------------------------------------------------------------- /external/include/pcap/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/sll.h -------------------------------------------------------------------------------- /external/include/pcap/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/usb.h -------------------------------------------------------------------------------- /external/include/pcap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/pcap/vlan.h -------------------------------------------------------------------------------- /external/include/unicode/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/unicode/rep.h -------------------------------------------------------------------------------- /external/include/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/unicode/utf.h -------------------------------------------------------------------------------- /external/include/vpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/vpx/LICENSE -------------------------------------------------------------------------------- /external/include/vpx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/vpx/README -------------------------------------------------------------------------------- /external/include/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/vpx/vp8.h -------------------------------------------------------------------------------- /external/include/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/vpx/vp8cx.h -------------------------------------------------------------------------------- /external/include/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/vpx/vp8dx.h -------------------------------------------------------------------------------- /external/include/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/zlib/zconf.h -------------------------------------------------------------------------------- /external/include/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/include/zlib/zlib.h -------------------------------------------------------------------------------- /external/java/ShortcutBadger/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *.iml 3 | build 4 | .gradle 5 | .project 6 | .settings -------------------------------------------------------------------------------- /external/src/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/freetype/README -------------------------------------------------------------------------------- /external/src/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/COPYING -------------------------------------------------------------------------------- /external/src/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/README.md -------------------------------------------------------------------------------- /external/src/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/async.c -------------------------------------------------------------------------------- /external/src/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/async.h -------------------------------------------------------------------------------- /external/src/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/dict.c -------------------------------------------------------------------------------- /external/src/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/dict.h -------------------------------------------------------------------------------- /external/src/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/fmacros.h -------------------------------------------------------------------------------- /external/src/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/hiredis.c -------------------------------------------------------------------------------- /external/src/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/hiredis.h -------------------------------------------------------------------------------- /external/src/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/net.c -------------------------------------------------------------------------------- /external/src/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/net.h -------------------------------------------------------------------------------- /external/src/hiredis/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/read.c -------------------------------------------------------------------------------- /external/src/hiredis/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/read.h -------------------------------------------------------------------------------- /external/src/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/sds.c -------------------------------------------------------------------------------- /external/src/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/sds.h -------------------------------------------------------------------------------- /external/src/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/test.c -------------------------------------------------------------------------------- /external/src/hiredis/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/hiredis/win32.h -------------------------------------------------------------------------------- /external/src/libcef/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libcef/README.txt -------------------------------------------------------------------------------- /external/src/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/README -------------------------------------------------------------------------------- /external/src/libjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/cderror.h -------------------------------------------------------------------------------- /external/src/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jaricom.c -------------------------------------------------------------------------------- /external/src/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jcarith.c -------------------------------------------------------------------------------- /external/src/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jccolor.c -------------------------------------------------------------------------------- /external/src/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jchuff.c -------------------------------------------------------------------------------- /external/src/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jcinit.c -------------------------------------------------------------------------------- /external/src/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /external/src/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jconfig.h -------------------------------------------------------------------------------- /external/src/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jcparam.c -------------------------------------------------------------------------------- /external/src/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jctrans.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdarith.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdct.h -------------------------------------------------------------------------------- /external/src/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdinput.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /external/src/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /external/src/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jerror.c -------------------------------------------------------------------------------- /external/src/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jerror.h -------------------------------------------------------------------------------- /external/src/libjpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jmemdos.c -------------------------------------------------------------------------------- /external/src/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /external/src/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /external/src/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /external/src/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jpegint.h -------------------------------------------------------------------------------- /external/src/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /external/src/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jquant1.c -------------------------------------------------------------------------------- /external/src/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jquant2.c -------------------------------------------------------------------------------- /external/src/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libjpeg/jutils.c -------------------------------------------------------------------------------- /external/src/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/LICENSE -------------------------------------------------------------------------------- /external/src/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/README -------------------------------------------------------------------------------- /external/src/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/png.c -------------------------------------------------------------------------------- /external/src/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/png.h -------------------------------------------------------------------------------- /external/src/libpng/png_slib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/png_slib.h -------------------------------------------------------------------------------- /external/src/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngconf.h -------------------------------------------------------------------------------- /external/src/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngdebug.h -------------------------------------------------------------------------------- /external/src/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngerror.c -------------------------------------------------------------------------------- /external/src/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngget.c -------------------------------------------------------------------------------- /external/src/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pnginfo.h -------------------------------------------------------------------------------- /external/src/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngmem.c -------------------------------------------------------------------------------- /external/src/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngpread.c -------------------------------------------------------------------------------- /external/src/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngpriv.h -------------------------------------------------------------------------------- /external/src/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngread.c -------------------------------------------------------------------------------- /external/src/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngrio.c -------------------------------------------------------------------------------- /external/src/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngrtran.c -------------------------------------------------------------------------------- /external/src/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngrutil.c -------------------------------------------------------------------------------- /external/src/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngset.c -------------------------------------------------------------------------------- /external/src/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngtrans.c -------------------------------------------------------------------------------- /external/src/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngwio.c -------------------------------------------------------------------------------- /external/src/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngwrite.c -------------------------------------------------------------------------------- /external/src/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngwtran.c -------------------------------------------------------------------------------- /external/src/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libpng/pngwutil.c -------------------------------------------------------------------------------- /external/src/libvpx/vp8_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libvpx/vp8_rtcd.h -------------------------------------------------------------------------------- /external/src/libvpx/vp9_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libvpx/vp9_rtcd.h -------------------------------------------------------------------------------- /external/src/libvpx/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/libvpx/vpx/vp8.h -------------------------------------------------------------------------------- /external/src/opus/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/COPYING -------------------------------------------------------------------------------- /external/src/opus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/README -------------------------------------------------------------------------------- /external/src/opus/celt/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/arch.h -------------------------------------------------------------------------------- /external/src/opus/celt/bands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/bands.c -------------------------------------------------------------------------------- /external/src/opus/celt/bands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/bands.h -------------------------------------------------------------------------------- /external/src/opus/celt/celt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/celt.c -------------------------------------------------------------------------------- /external/src/opus/celt/celt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/celt.h -------------------------------------------------------------------------------- /external/src/opus/celt/cwrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/cwrs.c -------------------------------------------------------------------------------- /external/src/opus/celt/cwrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/cwrs.h -------------------------------------------------------------------------------- /external/src/opus/celt/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/mdct.c -------------------------------------------------------------------------------- /external/src/opus/celt/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/mdct.h -------------------------------------------------------------------------------- /external/src/opus/celt/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/modes.c -------------------------------------------------------------------------------- /external/src/opus/celt/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/modes.h -------------------------------------------------------------------------------- /external/src/opus/celt/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/pitch.c -------------------------------------------------------------------------------- /external/src/opus/celt/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/pitch.h -------------------------------------------------------------------------------- /external/src/opus/celt/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/rate.c -------------------------------------------------------------------------------- /external/src/opus/celt/rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/rate.h -------------------------------------------------------------------------------- /external/src/opus/celt/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/vq.c -------------------------------------------------------------------------------- /external/src/opus/celt/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/celt/vq.h -------------------------------------------------------------------------------- /external/src/opus/silk/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/API.h -------------------------------------------------------------------------------- /external/src/opus/silk/CNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/CNG.c -------------------------------------------------------------------------------- /external/src/opus/silk/NSQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/NSQ.c -------------------------------------------------------------------------------- /external/src/opus/silk/NSQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/NSQ.h -------------------------------------------------------------------------------- /external/src/opus/silk/PLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/PLC.c -------------------------------------------------------------------------------- /external/src/opus/silk/PLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/PLC.h -------------------------------------------------------------------------------- /external/src/opus/silk/VAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/VAD.c -------------------------------------------------------------------------------- /external/src/opus/silk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/debug.c -------------------------------------------------------------------------------- /external/src/opus/silk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/debug.h -------------------------------------------------------------------------------- /external/src/opus/silk/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/main.h -------------------------------------------------------------------------------- /external/src/opus/silk/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/silk/sort.c -------------------------------------------------------------------------------- /external/src/opus/src/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/src/mlp.c -------------------------------------------------------------------------------- /external/src/opus/src/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/src/mlp.h -------------------------------------------------------------------------------- /external/src/opus/src/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/opus/src/opus.c -------------------------------------------------------------------------------- /external/src/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/sqlite/shell.c -------------------------------------------------------------------------------- /external/src/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/sqlite/sqlite3.c -------------------------------------------------------------------------------- /external/src/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/sqlite/sqlite3.h -------------------------------------------------------------------------------- /external/src/yasm/Artistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/Artistic.txt -------------------------------------------------------------------------------- /external/src/yasm/BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/BSD.txt -------------------------------------------------------------------------------- /external/src/yasm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/COPYING -------------------------------------------------------------------------------- /external/src/yasm/GNU_LGPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/GNU_LGPL-2.0 -------------------------------------------------------------------------------- /external/src/yasm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/config.h -------------------------------------------------------------------------------- /external/src/yasm/gas-token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/gas-token.c -------------------------------------------------------------------------------- /external/src/yasm/lc3bid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/lc3bid.c -------------------------------------------------------------------------------- /external/src/yasm/libyasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/libyasm.h -------------------------------------------------------------------------------- /external/src/yasm/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/module.c -------------------------------------------------------------------------------- /external/src/yasm/nasm-token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/nasm-token.c -------------------------------------------------------------------------------- /external/src/yasm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/util.h -------------------------------------------------------------------------------- /external/src/yasm/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/x86cpu.c -------------------------------------------------------------------------------- /external/src/yasm/x86regtmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/yasm/x86regtmod.c -------------------------------------------------------------------------------- /external/src/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/README -------------------------------------------------------------------------------- /external/src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/adler32.c -------------------------------------------------------------------------------- /external/src/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/compress.c -------------------------------------------------------------------------------- /external/src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/crc32.c -------------------------------------------------------------------------------- /external/src/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/crc32.h -------------------------------------------------------------------------------- /external/src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/deflate.c -------------------------------------------------------------------------------- /external/src/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/deflate.h -------------------------------------------------------------------------------- /external/src/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/gzclose.c -------------------------------------------------------------------------------- /external/src/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/gzguts.h -------------------------------------------------------------------------------- /external/src/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/gzlib.c -------------------------------------------------------------------------------- /external/src/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/gzread.c -------------------------------------------------------------------------------- /external/src/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/gzwrite.c -------------------------------------------------------------------------------- /external/src/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/infback.c -------------------------------------------------------------------------------- /external/src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inffast.c -------------------------------------------------------------------------------- /external/src/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inffast.h -------------------------------------------------------------------------------- /external/src/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inffixed.h -------------------------------------------------------------------------------- /external/src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inflate.c -------------------------------------------------------------------------------- /external/src/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inflate.h -------------------------------------------------------------------------------- /external/src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inftrees.c -------------------------------------------------------------------------------- /external/src/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/inftrees.h -------------------------------------------------------------------------------- /external/src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/trees.c -------------------------------------------------------------------------------- /external/src/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/trees.h -------------------------------------------------------------------------------- /external/src/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/uncompr.c -------------------------------------------------------------------------------- /external/src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/zconf.h -------------------------------------------------------------------------------- /external/src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/zlib.h -------------------------------------------------------------------------------- /external/src/zlib/zlib_slib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/zlib_slib.h -------------------------------------------------------------------------------- /external/src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/zutil.c -------------------------------------------------------------------------------- /external/src/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zlib/zutil.h -------------------------------------------------------------------------------- /external/src/zxing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zxing/LICENSE -------------------------------------------------------------------------------- /external/src/zxing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/external/src/zxing/README.md -------------------------------------------------------------------------------- /include/slib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib.h -------------------------------------------------------------------------------- /include/slib/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core.h -------------------------------------------------------------------------------- /include/slib/core/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/animation.h -------------------------------------------------------------------------------- /include/slib/core/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/app.h -------------------------------------------------------------------------------- /include/slib/core/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/array.h -------------------------------------------------------------------------------- /include/slib/core/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/asm.h -------------------------------------------------------------------------------- /include/slib/core/asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/asset.h -------------------------------------------------------------------------------- /include/slib/core/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/async.h -------------------------------------------------------------------------------- /include/slib/core/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/atomic.h -------------------------------------------------------------------------------- /include/slib/core/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/base.h -------------------------------------------------------------------------------- /include/slib/core/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/btree.h -------------------------------------------------------------------------------- /include/slib/core/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/cast.h -------------------------------------------------------------------------------- /include/slib/core/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/charset.h -------------------------------------------------------------------------------- /include/slib/core/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/compare.h -------------------------------------------------------------------------------- /include/slib/core/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/console.h -------------------------------------------------------------------------------- /include/slib/core/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/cpp.h -------------------------------------------------------------------------------- /include/slib/core/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/definition.h -------------------------------------------------------------------------------- /include/slib/core/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/dispatch.h -------------------------------------------------------------------------------- /include/slib/core/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/endian.h -------------------------------------------------------------------------------- /include/slib/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/event.h -------------------------------------------------------------------------------- /include/slib/core/expire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/expire.h -------------------------------------------------------------------------------- /include/slib/core/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/file.h -------------------------------------------------------------------------------- /include/slib/core/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/function.h -------------------------------------------------------------------------------- /include/slib/core/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/hash.h -------------------------------------------------------------------------------- /include/slib/core/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/hash_map.h -------------------------------------------------------------------------------- /include/slib/core/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/hash_table.h -------------------------------------------------------------------------------- /include/slib/core/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/io.h -------------------------------------------------------------------------------- /include/slib/core/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/java.h -------------------------------------------------------------------------------- /include/slib/core/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/json.h -------------------------------------------------------------------------------- /include/slib/core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/list.h -------------------------------------------------------------------------------- /include/slib/core/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/locale.h -------------------------------------------------------------------------------- /include/slib/core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/log.h -------------------------------------------------------------------------------- /include/slib/core/loop_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/loop_queue.h -------------------------------------------------------------------------------- /include/slib/core/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/macro.h -------------------------------------------------------------------------------- /include/slib/core/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/map.h -------------------------------------------------------------------------------- /include/slib/core/map_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/map_common.h -------------------------------------------------------------------------------- /include/slib/core/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/math.h -------------------------------------------------------------------------------- /include/slib/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/memory.h -------------------------------------------------------------------------------- /include/slib/core/mio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/mio.h -------------------------------------------------------------------------------- /include/slib/core/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/mutex.h -------------------------------------------------------------------------------- /include/slib/core/new_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/new_helper.h -------------------------------------------------------------------------------- /include/slib/core/null_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/null_value.h -------------------------------------------------------------------------------- /include/slib/core/nullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/nullable.h -------------------------------------------------------------------------------- /include/slib/core/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/object.h -------------------------------------------------------------------------------- /include/slib/core/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/option.h -------------------------------------------------------------------------------- /include/slib/core/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/pair.h -------------------------------------------------------------------------------- /include/slib/core/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/parse.h -------------------------------------------------------------------------------- /include/slib/core/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/pipe.h -------------------------------------------------------------------------------- /include/slib/core/preference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/preference.h -------------------------------------------------------------------------------- /include/slib/core/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/process.h -------------------------------------------------------------------------------- /include/slib/core/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/promise.h -------------------------------------------------------------------------------- /include/slib/core/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/ptr.h -------------------------------------------------------------------------------- /include/slib/core/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/queue.h -------------------------------------------------------------------------------- /include/slib/core/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/ref.h -------------------------------------------------------------------------------- /include/slib/core/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/regex.h -------------------------------------------------------------------------------- /include/slib/core/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/resource.h -------------------------------------------------------------------------------- /include/slib/core/rw_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/rw_lock.h -------------------------------------------------------------------------------- /include/slib/core/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/scoped.h -------------------------------------------------------------------------------- /include/slib/core/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/search.h -------------------------------------------------------------------------------- /include/slib/core/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/service.h -------------------------------------------------------------------------------- /include/slib/core/setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/setting.h -------------------------------------------------------------------------------- /include/slib/core/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/singleton.h -------------------------------------------------------------------------------- /include/slib/core/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/sort.h -------------------------------------------------------------------------------- /include/slib/core/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/spin_lock.h -------------------------------------------------------------------------------- /include/slib/core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/string.h -------------------------------------------------------------------------------- /include/slib/core/string16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/string16.h -------------------------------------------------------------------------------- /include/slib/core/string8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/string8.h -------------------------------------------------------------------------------- /include/slib/core/string_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/string_op.h -------------------------------------------------------------------------------- /include/slib/core/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/system.h -------------------------------------------------------------------------------- /include/slib/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/thread.h -------------------------------------------------------------------------------- /include/slib/core/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/time.h -------------------------------------------------------------------------------- /include/slib/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/timer.h -------------------------------------------------------------------------------- /include/slib/core/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/tuple.h -------------------------------------------------------------------------------- /include/slib/core/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/variant.h -------------------------------------------------------------------------------- /include/slib/core/win32_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/win32_com.h -------------------------------------------------------------------------------- /include/slib/core/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/core/xml.h -------------------------------------------------------------------------------- /include/slib/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto.h -------------------------------------------------------------------------------- /include/slib/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/aes.h -------------------------------------------------------------------------------- /include/slib/crypto/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/base64.h -------------------------------------------------------------------------------- /include/slib/crypto/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/blowfish.h -------------------------------------------------------------------------------- /include/slib/crypto/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/chacha.h -------------------------------------------------------------------------------- /include/slib/crypto/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/crc32c.h -------------------------------------------------------------------------------- /include/slib/crypto/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/des.h -------------------------------------------------------------------------------- /include/slib/crypto/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/ecc.h -------------------------------------------------------------------------------- /include/slib/crypto/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/gcm.h -------------------------------------------------------------------------------- /include/slib/crypto/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/hash.h -------------------------------------------------------------------------------- /include/slib/crypto/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/hmac.h -------------------------------------------------------------------------------- /include/slib/crypto/jwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/jwt.h -------------------------------------------------------------------------------- /include/slib/crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/md5.h -------------------------------------------------------------------------------- /include/slib/crypto/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/openssl.h -------------------------------------------------------------------------------- /include/slib/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/poly1305.h -------------------------------------------------------------------------------- /include/slib/crypto/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/rc4.h -------------------------------------------------------------------------------- /include/slib/crypto/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/rsa.h -------------------------------------------------------------------------------- /include/slib/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/sha1.h -------------------------------------------------------------------------------- /include/slib/crypto/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/sha2.h -------------------------------------------------------------------------------- /include/slib/crypto/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/tls.h -------------------------------------------------------------------------------- /include/slib/crypto/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/crypto/zlib.h -------------------------------------------------------------------------------- /include/slib/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db.h -------------------------------------------------------------------------------- /include/slib/db/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/constants.h -------------------------------------------------------------------------------- /include/slib/db/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/cursor.h -------------------------------------------------------------------------------- /include/slib/db/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/database.h -------------------------------------------------------------------------------- /include/slib/db/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/definition.h -------------------------------------------------------------------------------- /include/slib/db/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/expression.h -------------------------------------------------------------------------------- /include/slib/db/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/mysql.h -------------------------------------------------------------------------------- /include/slib/db/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/parameter.h -------------------------------------------------------------------------------- /include/slib/db/postgresql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/postgresql.h -------------------------------------------------------------------------------- /include/slib/db/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/redis.h -------------------------------------------------------------------------------- /include/slib/db/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/sql.h -------------------------------------------------------------------------------- /include/slib/db/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/sqlite.h -------------------------------------------------------------------------------- /include/slib/db/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/db/statement.h -------------------------------------------------------------------------------- /include/slib/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/device.h -------------------------------------------------------------------------------- /include/slib/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/device/device.h -------------------------------------------------------------------------------- /include/slib/device/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/device/sensor.h -------------------------------------------------------------------------------- /include/slib/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo.h -------------------------------------------------------------------------------- /include/slib/geo/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo/definition.h -------------------------------------------------------------------------------- /include/slib/geo/earth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo/earth.h -------------------------------------------------------------------------------- /include/slib/geo/geo_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo/geo_line.h -------------------------------------------------------------------------------- /include/slib/geo/globe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo/globe.h -------------------------------------------------------------------------------- /include/slib/geo/latlon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/geo/latlon.h -------------------------------------------------------------------------------- /include/slib/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics.h -------------------------------------------------------------------------------- /include/slib/graphics/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/bitmap.h -------------------------------------------------------------------------------- /include/slib/graphics/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/brush.h -------------------------------------------------------------------------------- /include/slib/graphics/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/canvas.h -------------------------------------------------------------------------------- /include/slib/graphics/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/color.h -------------------------------------------------------------------------------- /include/slib/graphics/emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/emoji.h -------------------------------------------------------------------------------- /include/slib/graphics/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/font.h -------------------------------------------------------------------------------- /include/slib/graphics/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/image.h -------------------------------------------------------------------------------- /include/slib/graphics/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/path.h -------------------------------------------------------------------------------- /include/slib/graphics/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/pen.h -------------------------------------------------------------------------------- /include/slib/graphics/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/text.h -------------------------------------------------------------------------------- /include/slib/graphics/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/util.h -------------------------------------------------------------------------------- /include/slib/graphics/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/yuv.h -------------------------------------------------------------------------------- /include/slib/graphics/zxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/graphics/zxing.h -------------------------------------------------------------------------------- /include/slib/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math.h -------------------------------------------------------------------------------- /include/slib/math/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/bezier.h -------------------------------------------------------------------------------- /include/slib/math/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/bigint.h -------------------------------------------------------------------------------- /include/slib/math/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/box.h -------------------------------------------------------------------------------- /include/slib/math/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/calculator.h -------------------------------------------------------------------------------- /include/slib/math/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/definition.h -------------------------------------------------------------------------------- /include/slib/math/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/int128.h -------------------------------------------------------------------------------- /include/slib/math/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/line.h -------------------------------------------------------------------------------- /include/slib/math/line3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/line3.h -------------------------------------------------------------------------------- /include/slib/math/matrix2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/matrix2.h -------------------------------------------------------------------------------- /include/slib/math/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/matrix3.h -------------------------------------------------------------------------------- /include/slib/math/matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/matrix4.h -------------------------------------------------------------------------------- /include/slib/math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/plane.h -------------------------------------------------------------------------------- /include/slib/math/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/point.h -------------------------------------------------------------------------------- /include/slib/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/quaternion.h -------------------------------------------------------------------------------- /include/slib/math/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/rectangle.h -------------------------------------------------------------------------------- /include/slib/math/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/size.h -------------------------------------------------------------------------------- /include/slib/math/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/sphere.h -------------------------------------------------------------------------------- /include/slib/math/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/triangle.h -------------------------------------------------------------------------------- /include/slib/math/triangle3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/triangle3.h -------------------------------------------------------------------------------- /include/slib/math/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/vector2.h -------------------------------------------------------------------------------- /include/slib/math/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/vector3.h -------------------------------------------------------------------------------- /include/slib/math/vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/math/vector4.h -------------------------------------------------------------------------------- /include/slib/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media.h -------------------------------------------------------------------------------- /include/slib/media/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/camera.h -------------------------------------------------------------------------------- /include/slib/media/codec_vpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/codec_vpx.h -------------------------------------------------------------------------------- /include/slib/media/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/constants.h -------------------------------------------------------------------------------- /include/slib/media/dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/dshow.h -------------------------------------------------------------------------------- /include/slib/media/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/dsound.h -------------------------------------------------------------------------------- /include/slib/media/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/ffmpeg.h -------------------------------------------------------------------------------- /include/slib/media/opensl_es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/media/opensl_es.h -------------------------------------------------------------------------------- /include/slib/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network.h -------------------------------------------------------------------------------- /include/slib/network/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/arp.h -------------------------------------------------------------------------------- /include/slib/network/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/async.h -------------------------------------------------------------------------------- /include/slib/network/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/curl.h -------------------------------------------------------------------------------- /include/slib/network/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/dns.h -------------------------------------------------------------------------------- /include/slib/network/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/event.h -------------------------------------------------------------------------------- /include/slib/network/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/http.h -------------------------------------------------------------------------------- /include/slib/network/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/icmp.h -------------------------------------------------------------------------------- /include/slib/network/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/io.h -------------------------------------------------------------------------------- /include/slib/network/nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/nat.h -------------------------------------------------------------------------------- /include/slib/network/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/os.h -------------------------------------------------------------------------------- /include/slib/network/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/stun.h -------------------------------------------------------------------------------- /include/slib/network/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/tcpip.h -------------------------------------------------------------------------------- /include/slib/network/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/network/url.h -------------------------------------------------------------------------------- /include/slib/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/render.h -------------------------------------------------------------------------------- /include/slib/render/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/render/base.h -------------------------------------------------------------------------------- /include/slib/render/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/render/canvas.h -------------------------------------------------------------------------------- /include/slib/render/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/render/engine.h -------------------------------------------------------------------------------- /include/slib/render/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/render/opengl.h -------------------------------------------------------------------------------- /include/slib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/resource.h -------------------------------------------------------------------------------- /include/slib/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/service.h -------------------------------------------------------------------------------- /include/slib/service/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/service/chat.h -------------------------------------------------------------------------------- /include/slib/service/fcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/service/fcm.h -------------------------------------------------------------------------------- /include/slib/service/web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/service/web.h -------------------------------------------------------------------------------- /include/slib/slib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/slib.h -------------------------------------------------------------------------------- /include/slib/social.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social.h -------------------------------------------------------------------------------- /include/slib/social/alipay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/alipay.h -------------------------------------------------------------------------------- /include/slib/social/ebay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/ebay.h -------------------------------------------------------------------------------- /include/slib/social/etsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/etsy.h -------------------------------------------------------------------------------- /include/slib/social/oauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/oauth.h -------------------------------------------------------------------------------- /include/slib/social/paypal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/paypal.h -------------------------------------------------------------------------------- /include/slib/social/wechat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/social/wechat.h -------------------------------------------------------------------------------- /include/slib/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui.h -------------------------------------------------------------------------------- /include/slib/ui/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/adapter.h -------------------------------------------------------------------------------- /include/slib/ui/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/animation.h -------------------------------------------------------------------------------- /include/slib/ui/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/app.h -------------------------------------------------------------------------------- /include/slib/ui/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/button.h -------------------------------------------------------------------------------- /include/slib/ui/chat_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/chat_view.h -------------------------------------------------------------------------------- /include/slib/ui/check_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/check_box.h -------------------------------------------------------------------------------- /include/slib/ui/chromium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/chromium.h -------------------------------------------------------------------------------- /include/slib/ui/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/clipboard.h -------------------------------------------------------------------------------- /include/slib/ui/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/constants.h -------------------------------------------------------------------------------- /include/slib/ui/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/core.h -------------------------------------------------------------------------------- /include/slib/ui/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/cursor.h -------------------------------------------------------------------------------- /include/slib/ui/definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/definition.h -------------------------------------------------------------------------------- /include/slib/ui/drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/drawer.h -------------------------------------------------------------------------------- /include/slib/ui/edit_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/edit_view.h -------------------------------------------------------------------------------- /include/slib/ui/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/event.h -------------------------------------------------------------------------------- /include/slib/ui/gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/gesture.h -------------------------------------------------------------------------------- /include/slib/ui/grid_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/grid_view.h -------------------------------------------------------------------------------- /include/slib/ui/image_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/image_view.h -------------------------------------------------------------------------------- /include/slib/ui/label_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/label_view.h -------------------------------------------------------------------------------- /include/slib/ui/line_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/line_view.h -------------------------------------------------------------------------------- /include/slib/ui/list_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/list_view.h -------------------------------------------------------------------------------- /include/slib/ui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/menu.h -------------------------------------------------------------------------------- /include/slib/ui/mobile_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/mobile_app.h -------------------------------------------------------------------------------- /include/slib/ui/photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/photo.h -------------------------------------------------------------------------------- /include/slib/ui/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/platform.h -------------------------------------------------------------------------------- /include/slib/ui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/resource.h -------------------------------------------------------------------------------- /include/slib/ui/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/screen.h -------------------------------------------------------------------------------- /include/slib/ui/scroll_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/scroll_bar.h -------------------------------------------------------------------------------- /include/slib/ui/slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/slider.h -------------------------------------------------------------------------------- /include/slib/ui/split_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/split_view.h -------------------------------------------------------------------------------- /include/slib/ui/tab_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/tab_view.h -------------------------------------------------------------------------------- /include/slib/ui/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/text.h -------------------------------------------------------------------------------- /include/slib/ui/text_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/text_view.h -------------------------------------------------------------------------------- /include/slib/ui/toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/toast.h -------------------------------------------------------------------------------- /include/slib/ui/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/transition.h -------------------------------------------------------------------------------- /include/slib/ui/tree_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/tree_view.h -------------------------------------------------------------------------------- /include/slib/ui/video_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/video_view.h -------------------------------------------------------------------------------- /include/slib/ui/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view.h -------------------------------------------------------------------------------- /include/slib/ui/view_efl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_efl.h -------------------------------------------------------------------------------- /include/slib/ui/view_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_gtk.h -------------------------------------------------------------------------------- /include/slib/ui/view_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_ios.h -------------------------------------------------------------------------------- /include/slib/ui/view_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_macos.h -------------------------------------------------------------------------------- /include/slib/ui/view_page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_page.h -------------------------------------------------------------------------------- /include/slib/ui/view_pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_pager.h -------------------------------------------------------------------------------- /include/slib/ui/view_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/view_win32.h -------------------------------------------------------------------------------- /include/slib/ui/web_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/web_view.h -------------------------------------------------------------------------------- /include/slib/ui/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/window.h -------------------------------------------------------------------------------- /include/slib/ui/xgpush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/include/slib/ui/xgpush.h -------------------------------------------------------------------------------- /licenses/FFmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/FFmpeg.txt -------------------------------------------------------------------------------- /licenses/FreeType.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/FreeType.txt -------------------------------------------------------------------------------- /licenses/Libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/Libjpeg.txt -------------------------------------------------------------------------------- /licenses/OpenGL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/OpenGL.txt -------------------------------------------------------------------------------- /licenses/OpenSSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/OpenSSL.txt -------------------------------------------------------------------------------- /licenses/Opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/Opus.txt -------------------------------------------------------------------------------- /licenses/PostgreSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/PostgreSQL.txt -------------------------------------------------------------------------------- /licenses/SQLite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/SQLite.txt -------------------------------------------------------------------------------- /licenses/ShortcutBadger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/ShortcutBadger.txt -------------------------------------------------------------------------------- /licenses/cairo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/cairo.txt -------------------------------------------------------------------------------- /licenses/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/curl.txt -------------------------------------------------------------------------------- /licenses/ginger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/ginger.txt -------------------------------------------------------------------------------- /licenses/glib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/glib.txt -------------------------------------------------------------------------------- /licenses/gtk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/gtk.txt -------------------------------------------------------------------------------- /licenses/hiredis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/hiredis.txt -------------------------------------------------------------------------------- /licenses/icu4c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/icu4c.txt -------------------------------------------------------------------------------- /licenses/kvazaar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/kvazaar.txt -------------------------------------------------------------------------------- /licenses/lame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/lame.txt -------------------------------------------------------------------------------- /licenses/libcef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libcef.txt -------------------------------------------------------------------------------- /licenses/libgd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libgd.txt -------------------------------------------------------------------------------- /licenses/libmariadb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libmariadb.txt -------------------------------------------------------------------------------- /licenses/libpcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libpcap.txt -------------------------------------------------------------------------------- /licenses/libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libpng.txt -------------------------------------------------------------------------------- /licenses/libvpx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/libvpx.txt -------------------------------------------------------------------------------- /licenses/noto-emoji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/noto-emoji.txt -------------------------------------------------------------------------------- /licenses/openh264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/openh264.txt -------------------------------------------------------------------------------- /licenses/pango.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/pango.txt -------------------------------------------------------------------------------- /licenses/stb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/stb.txt -------------------------------------------------------------------------------- /licenses/yasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/yasm.txt -------------------------------------------------------------------------------- /licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/zlib.txt -------------------------------------------------------------------------------- /licenses/zxing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/licenses/zxing.txt -------------------------------------------------------------------------------- /setup-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/setup-path -------------------------------------------------------------------------------- /setup-path.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/setup-path.bat -------------------------------------------------------------------------------- /src/res/.gitignore: -------------------------------------------------------------------------------- 1 | .sapp.conf 2 | -------------------------------------------------------------------------------- /src/res/gen/colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/colors.cpp -------------------------------------------------------------------------------- /src/res/gen/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/colors.h -------------------------------------------------------------------------------- /src/res/gen/drawables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/drawables.cpp -------------------------------------------------------------------------------- /src/res/gen/drawables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/drawables.h -------------------------------------------------------------------------------- /src/res/gen/layouts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/layouts.cpp -------------------------------------------------------------------------------- /src/res/gen/layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/layouts.h -------------------------------------------------------------------------------- /src/res/gen/layouts_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/layouts_base.h -------------------------------------------------------------------------------- /src/res/gen/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/menus.cpp -------------------------------------------------------------------------------- /src/res/gen/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/menus.h -------------------------------------------------------------------------------- /src/res/gen/raws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/raws.cpp -------------------------------------------------------------------------------- /src/res/gen/raws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/raws.h -------------------------------------------------------------------------------- /src/res/gen/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/resources.h -------------------------------------------------------------------------------- /src/res/gen/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/strings.cpp -------------------------------------------------------------------------------- /src/res/gen/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/strings.h -------------------------------------------------------------------------------- /src/res/gen/ui/MenuPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/gen/ui/MenuPopup.h -------------------------------------------------------------------------------- /src/res/global/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/global/colors.xml -------------------------------------------------------------------------------- /src/res/global/menus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/global/menus.xml -------------------------------------------------------------------------------- /src/res/global/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/global/strings.xml -------------------------------------------------------------------------------- /src/res/sapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/sapp.xml -------------------------------------------------------------------------------- /src/res/ui/MenuPopup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/res/ui/MenuPopup.xml -------------------------------------------------------------------------------- /src/sapp/sapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp.h -------------------------------------------------------------------------------- /src/sapp/sapp_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_document.cpp -------------------------------------------------------------------------------- /src/sapp/sapp_document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_document.h -------------------------------------------------------------------------------- /src/sapp/sapp_resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_resources.cpp -------------------------------------------------------------------------------- /src/sapp/sapp_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_resources.h -------------------------------------------------------------------------------- /src/sapp/sapp_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_util.cpp -------------------------------------------------------------------------------- /src/sapp/sapp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_util.h -------------------------------------------------------------------------------- /src/sapp/sapp_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_values.cpp -------------------------------------------------------------------------------- /src/sapp/sapp_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/sapp/sapp_values.h -------------------------------------------------------------------------------- /src/slib/core/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/animation.cpp -------------------------------------------------------------------------------- /src/slib/core/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/app.cpp -------------------------------------------------------------------------------- /src/slib/core/asm_x64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/asm_x64.cpp -------------------------------------------------------------------------------- /src/slib/core/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/asset.cpp -------------------------------------------------------------------------------- /src/slib/core/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/async.cpp -------------------------------------------------------------------------------- /src/slib/core/async_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/async_config.h -------------------------------------------------------------------------------- /src/slib/core/async_iocp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/async_iocp.cpp -------------------------------------------------------------------------------- /src/slib/core/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/atomic.cpp -------------------------------------------------------------------------------- /src/slib/core/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/base.cpp -------------------------------------------------------------------------------- /src/slib/core/charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/charset.cpp -------------------------------------------------------------------------------- /src/slib/core/collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/collection.cpp -------------------------------------------------------------------------------- /src/slib/core/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/console.cpp -------------------------------------------------------------------------------- /src/slib/core/dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/dispatch.cpp -------------------------------------------------------------------------------- /src/slib/core/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/event.cpp -------------------------------------------------------------------------------- /src/slib/core/event_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/event_unix.cpp -------------------------------------------------------------------------------- /src/slib/core/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/file.cpp -------------------------------------------------------------------------------- /src/slib/core/file_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/file_unix.cpp -------------------------------------------------------------------------------- /src/slib/core/file_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/file_win32.cpp -------------------------------------------------------------------------------- /src/slib/core/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/hash.cpp -------------------------------------------------------------------------------- /src/slib/core/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/io.cpp -------------------------------------------------------------------------------- /src/slib/core/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/java.cpp -------------------------------------------------------------------------------- /src/slib/core/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/json.cpp -------------------------------------------------------------------------------- /src/slib/core/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/list.cpp -------------------------------------------------------------------------------- /src/slib/core/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/locale.cpp -------------------------------------------------------------------------------- /src/slib/core/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/log.cpp -------------------------------------------------------------------------------- /src/slib/core/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/math.cpp -------------------------------------------------------------------------------- /src/slib/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/memory.cpp -------------------------------------------------------------------------------- /src/slib/core/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/mutex.cpp -------------------------------------------------------------------------------- /src/slib/core/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/object.cpp -------------------------------------------------------------------------------- /src/slib/core/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/parse.cpp -------------------------------------------------------------------------------- /src/slib/core/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/pipe.cpp -------------------------------------------------------------------------------- /src/slib/core/pipe_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/pipe_unix.cpp -------------------------------------------------------------------------------- /src/slib/core/preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/preference.cpp -------------------------------------------------------------------------------- /src/slib/core/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/process.cpp -------------------------------------------------------------------------------- /src/slib/core/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/ref.cpp -------------------------------------------------------------------------------- /src/slib/core/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/regex.cpp -------------------------------------------------------------------------------- /src/slib/core/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/resource.cpp -------------------------------------------------------------------------------- /src/slib/core/rw_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/rw_lock.cpp -------------------------------------------------------------------------------- /src/slib/core/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/service.cpp -------------------------------------------------------------------------------- /src/slib/core/setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/setting.cpp -------------------------------------------------------------------------------- /src/slib/core/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/spin_lock.cpp -------------------------------------------------------------------------------- /src/slib/core/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/string.cpp -------------------------------------------------------------------------------- /src/slib/core/string_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/string_op.cpp -------------------------------------------------------------------------------- /src/slib/core/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/system.cpp -------------------------------------------------------------------------------- /src/slib/core/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/thread.cpp -------------------------------------------------------------------------------- /src/slib/core/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/time.cpp -------------------------------------------------------------------------------- /src/slib/core/time_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/time_unix.cpp -------------------------------------------------------------------------------- /src/slib/core/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/timer.cpp -------------------------------------------------------------------------------- /src/slib/core/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/variant.cpp -------------------------------------------------------------------------------- /src/slib/core/win32_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/win32_com.cpp -------------------------------------------------------------------------------- /src/slib/core/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/core/xml.cpp -------------------------------------------------------------------------------- /src/slib/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/aes.cpp -------------------------------------------------------------------------------- /src/slib/crypto/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/base64.cpp -------------------------------------------------------------------------------- /src/slib/crypto/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/blowfish.cpp -------------------------------------------------------------------------------- /src/slib/crypto/chacha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/chacha.cpp -------------------------------------------------------------------------------- /src/slib/crypto/crc32c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/crc32c.cpp -------------------------------------------------------------------------------- /src/slib/crypto/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/des.cpp -------------------------------------------------------------------------------- /src/slib/crypto/ecc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/ecc.cpp -------------------------------------------------------------------------------- /src/slib/crypto/gcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/gcm.cpp -------------------------------------------------------------------------------- /src/slib/crypto/jwt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/jwt.cpp -------------------------------------------------------------------------------- /src/slib/crypto/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/md5.cpp -------------------------------------------------------------------------------- /src/slib/crypto/openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/openssl.cpp -------------------------------------------------------------------------------- /src/slib/crypto/poly1305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/poly1305.cpp -------------------------------------------------------------------------------- /src/slib/crypto/rc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/rc4.cpp -------------------------------------------------------------------------------- /src/slib/crypto/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/rsa.cpp -------------------------------------------------------------------------------- /src/slib/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/sha1.cpp -------------------------------------------------------------------------------- /src/slib/crypto/sha2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/sha2.cpp -------------------------------------------------------------------------------- /src/slib/crypto/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/crypto/tls.cpp -------------------------------------------------------------------------------- /src/slib/db/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/database.cpp -------------------------------------------------------------------------------- /src/slib/db/database_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/database_sql.cpp -------------------------------------------------------------------------------- /src/slib/db/mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/mysql.cpp -------------------------------------------------------------------------------- /src/slib/db/postgresql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/postgresql.cpp -------------------------------------------------------------------------------- /src/slib/db/redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/redis.cpp -------------------------------------------------------------------------------- /src/slib/db/sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/db/sqlite.cpp -------------------------------------------------------------------------------- /src/slib/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/device/device.cpp -------------------------------------------------------------------------------- /src/slib/device/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/device/sensor.cpp -------------------------------------------------------------------------------- /src/slib/geo/earth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/geo/earth.cpp -------------------------------------------------------------------------------- /src/slib/geo/geo_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/geo/geo_line.cpp -------------------------------------------------------------------------------- /src/slib/geo/globe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/geo/globe.cpp -------------------------------------------------------------------------------- /src/slib/geo/latlon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/geo/latlon.cpp -------------------------------------------------------------------------------- /src/slib/graphics/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/bitmap.cpp -------------------------------------------------------------------------------- /src/slib/graphics/brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/brush.cpp -------------------------------------------------------------------------------- /src/slib/graphics/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/canvas.cpp -------------------------------------------------------------------------------- /src/slib/graphics/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/color.cpp -------------------------------------------------------------------------------- /src/slib/graphics/emoji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/emoji.cpp -------------------------------------------------------------------------------- /src/slib/graphics/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/font.cpp -------------------------------------------------------------------------------- /src/slib/graphics/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/image.cpp -------------------------------------------------------------------------------- /src/slib/graphics/pen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/pen.cpp -------------------------------------------------------------------------------- /src/slib/graphics/yuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/yuv.cpp -------------------------------------------------------------------------------- /src/slib/graphics/zxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/graphics/zxing.cpp -------------------------------------------------------------------------------- /src/slib/math/bezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/bezier.cpp -------------------------------------------------------------------------------- /src/slib/math/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/bigint.cpp -------------------------------------------------------------------------------- /src/slib/math/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/box.cpp -------------------------------------------------------------------------------- /src/slib/math/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/calculator.cpp -------------------------------------------------------------------------------- /src/slib/math/int128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/int128.cpp -------------------------------------------------------------------------------- /src/slib/math/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/line.cpp -------------------------------------------------------------------------------- /src/slib/math/line3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/line3.cpp -------------------------------------------------------------------------------- /src/slib/math/matrix2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/matrix2.cpp -------------------------------------------------------------------------------- /src/slib/math/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/matrix3.cpp -------------------------------------------------------------------------------- /src/slib/math/matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/matrix4.cpp -------------------------------------------------------------------------------- /src/slib/math/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/plane.cpp -------------------------------------------------------------------------------- /src/slib/math/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/quaternion.cpp -------------------------------------------------------------------------------- /src/slib/math/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/rectangle.cpp -------------------------------------------------------------------------------- /src/slib/math/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/sphere.cpp -------------------------------------------------------------------------------- /src/slib/math/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/triangle.cpp -------------------------------------------------------------------------------- /src/slib/math/triangle3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/triangle3.cpp -------------------------------------------------------------------------------- /src/slib/math/vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/vector2.cpp -------------------------------------------------------------------------------- /src/slib/math/vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/vector3.cpp -------------------------------------------------------------------------------- /src/slib/math/vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/math/vector4.cpp -------------------------------------------------------------------------------- /src/slib/media/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/media/camera.cpp -------------------------------------------------------------------------------- /src/slib/media/codec_vpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/media/codec_vpx.cpp -------------------------------------------------------------------------------- /src/slib/network/arp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/arp.cpp -------------------------------------------------------------------------------- /src/slib/network/dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/dns.cpp -------------------------------------------------------------------------------- /src/slib/network/http_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/http_io.cpp -------------------------------------------------------------------------------- /src/slib/network/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/icmp.cpp -------------------------------------------------------------------------------- /src/slib/network/nat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/nat.cpp -------------------------------------------------------------------------------- /src/slib/network/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/socket.cpp -------------------------------------------------------------------------------- /src/slib/network/stun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/stun.cpp -------------------------------------------------------------------------------- /src/slib/network/tcpip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/tcpip.cpp -------------------------------------------------------------------------------- /src/slib/network/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/network/url.cpp -------------------------------------------------------------------------------- /src/slib/render/opengl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/render/opengl_gl.h -------------------------------------------------------------------------------- /src/slib/render/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/render/texture.cpp -------------------------------------------------------------------------------- /src/slib/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/resources.h -------------------------------------------------------------------------------- /src/slib/service/captcha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/service/captcha.cpp -------------------------------------------------------------------------------- /src/slib/service/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/service/chat.cpp -------------------------------------------------------------------------------- /src/slib/service/ginger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/service/ginger.cpp -------------------------------------------------------------------------------- /src/slib/social/alipay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/alipay.cpp -------------------------------------------------------------------------------- /src/slib/social/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/contact.cpp -------------------------------------------------------------------------------- /src/slib/social/ebay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/ebay.cpp -------------------------------------------------------------------------------- /src/slib/social/etsy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/etsy.cpp -------------------------------------------------------------------------------- /src/slib/social/etsy_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/etsy_ui.cpp -------------------------------------------------------------------------------- /src/slib/social/facebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/facebook.cpp -------------------------------------------------------------------------------- /src/slib/social/linkedin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/linkedin.cpp -------------------------------------------------------------------------------- /src/slib/social/oauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/oauth.cpp -------------------------------------------------------------------------------- /src/slib/social/oauth_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/oauth_ui.cpp -------------------------------------------------------------------------------- /src/slib/social/paypal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/paypal.cpp -------------------------------------------------------------------------------- /src/slib/social/twitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/twitter.cpp -------------------------------------------------------------------------------- /src/slib/social/wechat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/social/wechat.cpp -------------------------------------------------------------------------------- /src/slib/ui/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/button.cpp -------------------------------------------------------------------------------- /src/slib/ui/button_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/button_macos.h -------------------------------------------------------------------------------- /src/slib/ui/button_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/button_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/button_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/button_win32.cpp -------------------------------------------------------------------------------- /src/slib/ui/button_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/button_win32.h -------------------------------------------------------------------------------- /src/slib/ui/camera_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/camera_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/chat_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/chat_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/check_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/check_box.cpp -------------------------------------------------------------------------------- /src/slib/ui/chromium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/chromium.cpp -------------------------------------------------------------------------------- /src/slib/ui/chromium_macos.mm: -------------------------------------------------------------------------------- 1 | #include "chromium.cpp" 2 | -------------------------------------------------------------------------------- /src/slib/ui/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/clipboard.cpp -------------------------------------------------------------------------------- /src/slib/ui/clipboard_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/clipboard_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/cursor.cpp -------------------------------------------------------------------------------- /src/slib/ui/cursor_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/cursor_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/cursor_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/cursor_win32.cpp -------------------------------------------------------------------------------- /src/slib/ui/date_picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/date_picker.cpp -------------------------------------------------------------------------------- /src/slib/ui/drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/drawer.cpp -------------------------------------------------------------------------------- /src/slib/ui/edit_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/edit_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/edit_view_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/edit_view_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/gesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/gesture.cpp -------------------------------------------------------------------------------- /src/slib/ui/grid_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/grid_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/image_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/image_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/label_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/label_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/line_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/line_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/linear_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/linear_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/list_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/list_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/mobile_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/mobile_app.cpp -------------------------------------------------------------------------------- /src/slib/ui/mobile_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/mobile_game.cpp -------------------------------------------------------------------------------- /src/slib/ui/picker_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/picker_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/progress_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/progress_bar.cpp -------------------------------------------------------------------------------- /src/slib/ui/radio_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/radio_button.cpp -------------------------------------------------------------------------------- /src/slib/ui/refresh_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/refresh_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/render_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/render_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/scroll_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/scroll_bar.cpp -------------------------------------------------------------------------------- /src/slib/ui/scroll_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/scroll_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/select_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/select_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/slider.cpp -------------------------------------------------------------------------------- /src/slib/ui/split_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/split_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/switch_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/switch_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/tab_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/tab_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/text_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/text_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/toast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/toast.cpp -------------------------------------------------------------------------------- /src/slib/ui/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/transition.cpp -------------------------------------------------------------------------------- /src/slib/ui/tree_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/tree_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_adapter.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_animation.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_animation.h -------------------------------------------------------------------------------- /src/slib/ui/ui_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_app.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_core_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_common.h -------------------------------------------------------------------------------- /src/slib/ui/ui_core_efl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_efl.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_core_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_gtk.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_core_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_core_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_core_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_core_win32.h -------------------------------------------------------------------------------- /src/slib/ui/ui_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_event.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_event_efl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_event_efl.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_event_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_event_gtk.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_event_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_event_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_menu.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_menu_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_menu_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_photo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_photo.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_photo_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_photo_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_platform.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_resource.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_text.cpp -------------------------------------------------------------------------------- /src/slib/ui/ui_text_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_text_ios.h -------------------------------------------------------------------------------- /src/slib/ui/ui_text_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_text_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/ui_text_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_text_macos.h -------------------------------------------------------------------------------- /src/slib/ui/ui_text_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/ui_text_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/video_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/video_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_android.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_android.h -------------------------------------------------------------------------------- /src/slib/ui/view_efl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_efl.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_efl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_efl.h -------------------------------------------------------------------------------- /src/slib/ui/view_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_gtk.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_gtk.h -------------------------------------------------------------------------------- /src/slib/ui/view_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_ios.h -------------------------------------------------------------------------------- /src/slib/ui/view_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/view_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_macos.h -------------------------------------------------------------------------------- /src/slib/ui/view_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/view_page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_page.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_pager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_pager.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_win32.cpp -------------------------------------------------------------------------------- /src/slib/ui/view_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/view_win32.h -------------------------------------------------------------------------------- /src/slib/ui/web_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/web_view.cpp -------------------------------------------------------------------------------- /src/slib/ui/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window.cpp -------------------------------------------------------------------------------- /src/slib/ui/window_efl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window_efl.cpp -------------------------------------------------------------------------------- /src/slib/ui/window_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window_gtk.cpp -------------------------------------------------------------------------------- /src/slib/ui/window_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window_ios.mm -------------------------------------------------------------------------------- /src/slib/ui/window_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window_macos.mm -------------------------------------------------------------------------------- /src/slib/ui/window_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/src/slib/ui/window_win32.cpp -------------------------------------------------------------------------------- /tool/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/.gitignore -------------------------------------------------------------------------------- /tool/bin/new-slib-app-ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/new-slib-app-ios -------------------------------------------------------------------------------- /tool/bin/new-slib-app-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/new-slib-app-linux -------------------------------------------------------------------------------- /tool/bin/new-slib-app-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/new-slib-app-macos -------------------------------------------------------------------------------- /tool/bin/new-slib-app-mobile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/new-slib-app-mobile -------------------------------------------------------------------------------- /tool/bin/sapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/sapp -------------------------------------------------------------------------------- /tool/bin/sapp_old.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/sapp_old.bat -------------------------------------------------------------------------------- /tool/bin/yasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/bin/yasm -------------------------------------------------------------------------------- /tool/build-app-cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $(dirname $0)/build-app-cmake.sh Debug $1 -------------------------------------------------------------------------------- /tool/build-app-cmake-release.sh: -------------------------------------------------------------------------------- 1 | $(dirname $0)/build-app-cmake.sh Release $1 -------------------------------------------------------------------------------- /tool/build-app-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/build-app-cmake.sh -------------------------------------------------------------------------------- /tool/slib-app.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/slib-app.cmake -------------------------------------------------------------------------------- /tool/src/FindSymbols/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /tool/src/ReplaceTextInFile/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /tool/src/sapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/src/sapp/Info.plist -------------------------------------------------------------------------------- /tool/src/sapp/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/src/sapp/MainMenu.xib -------------------------------------------------------------------------------- /tool/src/sapp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/src/sapp/main.cpp -------------------------------------------------------------------------------- /tool/template/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tool/template/Linux-console/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tool/template/Linux-console/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /tool/template/Linux-console/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /tool/template/Linux/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tool/template/Linux/cmake-debug.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-debug.sh $(dirname $0) -------------------------------------------------------------------------------- /tool/template/Linux/cmake-release.sh: -------------------------------------------------------------------------------- 1 | $SLIB_PATH/tool/build-app-cmake-release.sh $(dirname $0) -------------------------------------------------------------------------------- /tool/template/Linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/template/Linux/main.cpp -------------------------------------------------------------------------------- /tool/template/Win32-console/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /tool/template/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /tool/template/Win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/template/Win32/main.cpp -------------------------------------------------------------------------------- /tool/template/desktop-sapp/Win32/.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.vcxproj.user 3 | /build 4 | -------------------------------------------------------------------------------- /tool/template/desktop-sapp/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /tool/template/desktop-sapp/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /tool/template/desktop-sapp/src/template_gen/layouts.h: -------------------------------------------------------------------------------- 1 | #include "ui/MainWindow.h" 2 | -------------------------------------------------------------------------------- /tool/template/desktop/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/template/desktop/app.h -------------------------------------------------------------------------------- /tool/template/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /tool/template/macOS-console/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /tool/template/macOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /tool/template/mobile-sapp/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tool/template/mobile-sapp/iOS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | -------------------------------------------------------------------------------- /tool/template/mobile-sapp/src/.gitignore: -------------------------------------------------------------------------------- 1 | gen -------------------------------------------------------------------------------- /tool/template/mobile/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/template/mobile/app.cpp -------------------------------------------------------------------------------- /tool/template/mobile/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLIBIO/SLib/HEAD/tool/template/mobile/app.h --------------------------------------------------------------------------------