Is there a way to set your exported functions with *.def files? I notice it usually automatically generates a *.def file when you use the __attributes__((dllexport)) directive. Is there a way to get it to READ, rather than write, a *.def file when working with DLLs, and in so doing, allow the *.def file to select which functions are exported?
Is there a way to specify stdcall calling convention, other than using an __attributes__((stdcall)) directive? For example, the standard usage of C usually requires simply using _stdcall. I notice that this generates errors in TCC. Can somebody please fix that bug?