coff: Add coff import files (#9)

Created using msvc's `lib.exe` version 14.35.32217.1
This commit is contained in:
Chris Denton
2023-06-22 13:15:17 +10:00
committed by GitHub
parent 0bd0f08374
commit 86bf162a75
5 changed files with 18 additions and 0 deletions
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
lib /def:import_msvc_x64.def /machine:x64 /nologo
lib /def:import_msvc_x86.def /machine:x86 /nologo
lib /def:import_msvc_arm64ec.def /machine:arm64ec /nologo
lib import_msvc_x64.lib import_msvc_x86.lib import_msvc_arm64ec.lib /out:import_msvc.lib /nologo
rm import_msvc_*.lib
rm *.exp
+3
View File
@@ -0,0 +1,3 @@
LIBRARY test_arm64ec
EXPORTS
foo_arm64ec
+6
View File
@@ -0,0 +1,6 @@
LIBRARY test_x64
EXPORTS
foo_x64
bar_x64 @1 NONAME
FOO_x64 DATA
BAR_x64 CONSTANT ; warning LNK4087: CONSTANT keyword is obsolete; use DATA
+3
View File
@@ -0,0 +1,3 @@
LIBRARY test_x86
EXPORTS
foo_x86