├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── foo.cpp ├── foo.py ├── foo_2019_windows.cpp ├── readme.md └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/foo.cpp -------------------------------------------------------------------------------- /foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/foo.py -------------------------------------------------------------------------------- /foo_2019_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/foo_2019_windows.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/readme.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Auctoris/ctypes_demo/HEAD/test.py --------------------------------------------------------------------------------