You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.