├── .gitignore ├── README ├── RestPlugin ├── Rest.c ├── RestPlugin.sln ├── RestPlugin.vcxproj └── RestWin.cpp ├── SharedLibs └── log4net.dll ├── Test Cases.txt ├── XPlaneOneIos.RestService ├── EventsArgs.cs ├── IRestService.cs ├── Properties │ └── AssemblyInfo.cs ├── RestService.cs ├── SharedMemory │ ├── SharedMemory.cs │ ├── SharedMemoryHandle.cs │ ├── SharedMemoryStream.cs │ └── SharedMemoryStruct.cs ├── XPlanePluginIcd.cs └── XplaneServices.csproj ├── XplaneRestApi.sln ├── XplaneRestServiceLauncher ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RestServiceLauncher.csproj └── app.config ├── XplaneServices ├── App.config ├── IRestService.cs ├── IService1.cs ├── Properties │ └── AssemblyInfo.cs ├── RestService.cs ├── Service1.cs └── XplaneServices.csproj └── bin ├── RestServiceLauncher.exe ├── RestServiceLauncher.exe.config ├── XplaneServices.dll └── log4net.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/README -------------------------------------------------------------------------------- /RestPlugin/Rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/RestPlugin/Rest.c -------------------------------------------------------------------------------- /RestPlugin/RestPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/RestPlugin/RestPlugin.sln -------------------------------------------------------------------------------- /RestPlugin/RestPlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/RestPlugin/RestPlugin.vcxproj -------------------------------------------------------------------------------- /RestPlugin/RestWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/RestPlugin/RestWin.cpp -------------------------------------------------------------------------------- /SharedLibs/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/SharedLibs/log4net.dll -------------------------------------------------------------------------------- /Test Cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/Test Cases.txt -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/EventsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/EventsArgs.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/IRestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/IRestService.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/RestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/RestService.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/SharedMemory/SharedMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/SharedMemory/SharedMemory.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/SharedMemory/SharedMemoryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/SharedMemory/SharedMemoryHandle.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/SharedMemory/SharedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/SharedMemory/SharedMemoryStream.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/SharedMemory/SharedMemoryStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/SharedMemory/SharedMemoryStruct.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/XPlanePluginIcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/XPlanePluginIcd.cs -------------------------------------------------------------------------------- /XPlaneOneIos.RestService/XplaneServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XPlaneOneIos.RestService/XplaneServices.csproj -------------------------------------------------------------------------------- /XplaneRestApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneRestApi.sln -------------------------------------------------------------------------------- /XplaneRestServiceLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneRestServiceLauncher/Program.cs -------------------------------------------------------------------------------- /XplaneRestServiceLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneRestServiceLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XplaneRestServiceLauncher/RestServiceLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneRestServiceLauncher/RestServiceLauncher.csproj -------------------------------------------------------------------------------- /XplaneRestServiceLauncher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneRestServiceLauncher/app.config -------------------------------------------------------------------------------- /XplaneServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/App.config -------------------------------------------------------------------------------- /XplaneServices/IRestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/IRestService.cs -------------------------------------------------------------------------------- /XplaneServices/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/IService1.cs -------------------------------------------------------------------------------- /XplaneServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XplaneServices/RestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/RestService.cs -------------------------------------------------------------------------------- /XplaneServices/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/Service1.cs -------------------------------------------------------------------------------- /XplaneServices/XplaneServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/XplaneServices/XplaneServices.csproj -------------------------------------------------------------------------------- /bin/RestServiceLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/bin/RestServiceLauncher.exe -------------------------------------------------------------------------------- /bin/RestServiceLauncher.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/bin/RestServiceLauncher.exe.config -------------------------------------------------------------------------------- /bin/XplaneServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/bin/XplaneServices.dll -------------------------------------------------------------------------------- /bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delacruz/XplaneRestApi/HEAD/bin/log4net.dll --------------------------------------------------------------------------------