I have a class like below, and MMX keeps complaining about "Parsing Error" at Column 1 of Line "class function TMyFunkyDll.InitializeDll(const ASecretKey: PAnsiChar): Integer;"
Can this be "hushed"?
interface
type
TMyFunkyDll = class
public
class function InitializeDll(const ASecretKey: PAnsiChar): Integer; stdcall;
end;
implementation
const
MY_FUNKY_DLL = 'MyFunkyDll.dll';
class function TMyFunkyDll.InitializeDll(const ASecretKey: PAnsiChar): Integer;
external MY_FUNKY_DLL name 'InitializeDll';
end.
MMX sorting is useful, but sometimes, I don't want it to show sorting hints for some class because I just want to keep the order of methods as I have written them.
Is there a "trick" to conditionally turn OFF sorting hint?