Files
codeql/cpp/ql/test/library-tests/calling-convention/test.cpp
2025-03-31 17:45:44 +02:00

17 lines
323 B
C++

// semmle-extractor-options: --microsoft
struct call_conventions {
void __thiscall thiscall_method() {}
};
void __cdecl func_cdecl() {}
void __stdcall func_stdcall() {}
void __fastcall func_fastcall() {}
void __vectorcall func_vectorcall() {}
int __cdecl func_overload() {}
int __stdcall func_overload(int x) {}