Frouk Grandmaster Cheater
Reputation: 5
Joined: 22 Jun 2021 Posts: 511
|
Posted: Fri Jan 23, 2026 9:58 am Post subject: __fastcall not defined in AA C Code |
|
|
Whenever you try to use __fastcall calling convention you'd mostly fail since it might not be properly defined, saw the _mingw.h use `__attribute__((fastcall))`, and it still gave an error, but after defining __fastcall macro as `__attribute__ ((__fastcall__))`, it thankfully worked
And there's no such thing as __thiscall convention, it highlights it but cannot be interpreted
|
|