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