├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dylib_386_test.go ├── dylib_amd64_test.go ├── dylib_posix.go ├── dylib_windows.go ├── floatpatch ├── asmTest_test.go ├── asmtestdll │ ├── Project12.dpr │ └── Project12.dproj ├── floatResultPatch.go ├── floatResultPatch_386.s └── floatResultPatch_amd64.s └── testdll ├── testdll.dpr └── testdll.dproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/README.md -------------------------------------------------------------------------------- /dylib_386_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/dylib_386_test.go -------------------------------------------------------------------------------- /dylib_amd64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/dylib_amd64_test.go -------------------------------------------------------------------------------- /dylib_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/dylib_posix.go -------------------------------------------------------------------------------- /dylib_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/dylib_windows.go -------------------------------------------------------------------------------- /floatpatch/asmTest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/asmTest_test.go -------------------------------------------------------------------------------- /floatpatch/asmtestdll/Project12.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/asmtestdll/Project12.dpr -------------------------------------------------------------------------------- /floatpatch/asmtestdll/Project12.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/asmtestdll/Project12.dproj -------------------------------------------------------------------------------- /floatpatch/floatResultPatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/floatResultPatch.go -------------------------------------------------------------------------------- /floatpatch/floatResultPatch_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/floatResultPatch_386.s -------------------------------------------------------------------------------- /floatpatch/floatResultPatch_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/floatpatch/floatResultPatch_amd64.s -------------------------------------------------------------------------------- /testdll/testdll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/testdll/testdll.dpr -------------------------------------------------------------------------------- /testdll/testdll.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ying32/dylib/HEAD/testdll/testdll.dproj --------------------------------------------------------------------------------