1
What is the purpose of calling conventions __fastcall, __stdcall, __thiscall, __cdecl, __fastcall and how to know which one to use?
For example, in some function that needs to be called faster (I could use inline but I’m avoiding for bug problems in the compilation), by name I would use __fastcall, but I don’t know if really that’s what it does or if it can cause some problem in the function.