__fastcall、__thiscall、__cdecl、__stdcall关系与区别
Last updated
Last updated
class MyClass {
public:
void __thiscall MemberFunction(int a, int b) {
// 处理成员函数逻辑
}
};
void __cdecl FreeFunction(int a, int b) {
// 处理自由函数逻辑
}
void __stdcall WinApiFunction(int a, int b) {
// 处理WinAPI函数逻辑
}
void __fastcall FastFunction(int a, int b) {
// 处理快速函数逻辑
}