├── .gitmodules └── libffi-msvc ├── libffi-msvc.sln ├── libffi ├── ReadMe.txt ├── ffi.h ├── fficonfig.h ├── libffi.vcxproj └── libffi.vcxproj.filters ├── testCaller ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── testCaller.cpp ├── testCaller.vcxproj └── testCaller.vcxproj.filters └── testdll ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── testdll.cpp ├── testdll.vcxproj └── testdll.vcxproj.filters /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/.gitmodules -------------------------------------------------------------------------------- /libffi-msvc/libffi-msvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi-msvc.sln -------------------------------------------------------------------------------- /libffi-msvc/libffi/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi/ReadMe.txt -------------------------------------------------------------------------------- /libffi-msvc/libffi/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi/ffi.h -------------------------------------------------------------------------------- /libffi-msvc/libffi/fficonfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi/fficonfig.h -------------------------------------------------------------------------------- /libffi-msvc/libffi/libffi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi/libffi.vcxproj -------------------------------------------------------------------------------- /libffi-msvc/libffi/libffi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/libffi/libffi.vcxproj.filters -------------------------------------------------------------------------------- /libffi-msvc/testCaller/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/ReadMe.txt -------------------------------------------------------------------------------- /libffi-msvc/testCaller/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/stdafx.cpp -------------------------------------------------------------------------------- /libffi-msvc/testCaller/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/stdafx.h -------------------------------------------------------------------------------- /libffi-msvc/testCaller/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/targetver.h -------------------------------------------------------------------------------- /libffi-msvc/testCaller/testCaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/testCaller.cpp -------------------------------------------------------------------------------- /libffi-msvc/testCaller/testCaller.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/testCaller.vcxproj -------------------------------------------------------------------------------- /libffi-msvc/testCaller/testCaller.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testCaller/testCaller.vcxproj.filters -------------------------------------------------------------------------------- /libffi-msvc/testdll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/ReadMe.txt -------------------------------------------------------------------------------- /libffi-msvc/testdll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/dllmain.cpp -------------------------------------------------------------------------------- /libffi-msvc/testdll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/stdafx.cpp -------------------------------------------------------------------------------- /libffi-msvc/testdll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/stdafx.h -------------------------------------------------------------------------------- /libffi-msvc/testdll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/targetver.h -------------------------------------------------------------------------------- /libffi-msvc/testdll/testdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/testdll.cpp -------------------------------------------------------------------------------- /libffi-msvc/testdll/testdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/testdll.vcxproj -------------------------------------------------------------------------------- /libffi-msvc/testdll/testdll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgregory/libffi-msvc/HEAD/libffi-msvc/testdll/testdll.vcxproj.filters --------------------------------------------------------------------------------