Define `STRSAFE_NO_DEPRECATE` for both clang and gcc mingw-w64
I just tested having __declspec(dllexport) before type names with both clang and gcc and it seems to work on both of them. Code used: // Compiles with Clang 12 and GCC 10.2 #include <stdio.h> __declspec(dllexport) void hello(); void hello() { puts("Hello"); } Long Nguyen
Let me check to see if __declspec(dllexport) can be put before the typename on GCC. If it's possible then I'll change all of it. Also, does winpthreads on GCC passes all the tests in the test_pthread folder? Long Nguyen
Let me check to see if __declspec(dllexport) can be put before the typename on GCC. If it's possible then I'll change all of it. Also, does winpthreads on GCC passes all the tests in the test_pthread folder? Long
winpthreads: WINPTHREAD_API after type name causes errors in MSVC