wxinix 0 Posted January 2 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. Share this post Link to post
Uwe Raabe 2057 Posted January 2 This seems to be an error in the parser. I will have a look at it when time allows. Share this post Link to post