├── .gitignore ├── .gitlab-ci.yml ├── 87-electronics-kitchen.rules ├── CMakeLists.txt ├── COPYING ├── README.md ├── cmake └── modules │ └── Findlibusb-1.0.cmake ├── examples ├── ctl │ ├── cmds.cpp │ ├── cmds.hpp │ ├── main.cpp │ └── optionparser.hpp └── io │ ├── main.cpp │ └── optionparser.hpp ├── include └── freesrp.hpp └── src ├── freesrp.cpp ├── freesrp_impl.cpp ├── freesrp_impl.hpp ├── readerwriterqueue ├── LICENSE.md ├── README.md ├── atomicops.h └── readerwriterqueue.h └── util.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .idea/ 3 | *~ 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /87-electronics-kitchen.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/87-electronics-kitchen.rules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/Findlibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/cmake/modules/Findlibusb-1.0.cmake -------------------------------------------------------------------------------- /examples/ctl/cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/ctl/cmds.cpp -------------------------------------------------------------------------------- /examples/ctl/cmds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/ctl/cmds.hpp -------------------------------------------------------------------------------- /examples/ctl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/ctl/main.cpp -------------------------------------------------------------------------------- /examples/ctl/optionparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/ctl/optionparser.hpp -------------------------------------------------------------------------------- /examples/io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/io/main.cpp -------------------------------------------------------------------------------- /examples/io/optionparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/examples/io/optionparser.hpp -------------------------------------------------------------------------------- /include/freesrp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/include/freesrp.hpp -------------------------------------------------------------------------------- /src/freesrp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/freesrp.cpp -------------------------------------------------------------------------------- /src/freesrp_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/freesrp_impl.cpp -------------------------------------------------------------------------------- /src/freesrp_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/freesrp_impl.hpp -------------------------------------------------------------------------------- /src/readerwriterqueue/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/readerwriterqueue/LICENSE.md -------------------------------------------------------------------------------- /src/readerwriterqueue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/readerwriterqueue/README.md -------------------------------------------------------------------------------- /src/readerwriterqueue/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/readerwriterqueue/atomicops.h -------------------------------------------------------------------------------- /src/readerwriterqueue/readerwriterqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/readerwriterqueue/readerwriterqueue.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myriadrf/libfreesrp/HEAD/src/util.cpp --------------------------------------------------------------------------------