summaryrefslogtreecommitdiffstats
path: root/test/input/Function-calling-convention-ms-dllexport.cxx
blob: f6679d10861324ece4e6da9f836e88d38c6b95be (plain)
1
2
3
4
__declspec(dllexport) void __cdecl start(void(__cdecl*)());
__declspec(dllexport) void __stdcall start(void(__stdcall*)());
__declspec(dllexport) void __fastcall start(void(__fastcall*)());
__declspec(dllexport) void __thiscall start(void(__thiscall*)());