Description
Suggestion
extern "system"
is designed for Windows API, which uses "stdcall" on x86 and "C" on other archs. windows_targets::link
now distinguishes them again. It becomes very annoying because previously I use unsafe extern "system" fn
function pointers to store some windows APIs but now they become "C" on non-x86. I don't get the point why you distinguish them.