mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
323 B
C++
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) {}
|