__fastcall or __stdcall is mapped to __cdecl
For managed code, the compiler maps __stdcall and __fastcall to __cdecl.
The following sample generates C4833:
// compile with cl /EEi /c /W3 void __fastcall test(void) {}