Jump to content
wxinix

MMX Parsing Errors

Recommended Posts

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×