Hi,
I've written a code that I compile into a dll. Everything's working fine so far.
Now I need this code to be used in another project where it needs to be included as a linkable file that can be used by MS link.exe, namely an *.obj file in Common Object File Format (COFF).
How do I create such a file? I tried whether the *.o file from "lib\x86_64-win64" in the project folder is such a file, but I get dozens of errors like "error LNK2001: unresolved external symbol INIT$_SYSTEM" so I think that *.o file is not the one I need.
So how do I create a correct one? And if the *.o file is a propper object file, then do I have to change something in the project so it can be used propperly?
Thanks in advance!