How to use the Microsoft Linker /Export parameter
问题 I would like to export functions from my object files manually with the Microsoft Linker. It works fine when I use the parameter for every function like this: /Export:ExportedFunction1$qqsv /Export:ExportedFunction2$qqsv and so on... The linker then automatically assigns the ords properly. However in the export table the actuall export name is " ExportedFunction1$qqsv/ExportedFunction2$qqsv/etc.. " I tried the parameter doing like this: /Export:ExportedFunction1$qqsv,1,ExportedFunction1