calling convention 例子:
void    calltype MyFunc( char c, short s, int i, double f );
void    MyFunc( char c, short s, int i, double f )
    {
............
    }
MyFunc ('x', 12, 8192, 2.7183);
//-------------------------------------------------
__cdecl
The C decorated function name is “_MyFunc.” 
The__cdecl calling convention__stdcall and thiscall
The C decorated name (__stdcall) is “_MyFunc@20.” The C++ decorated name is proprietary.__fastcall
The C decorated name (__fastcall) is “@MyFunc@20.” The C++ decorated name is proprietary.