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