Hello!

Say I have inteface like this:
interface IHello  : nsISupports
{
   void hello(in long p1);

};

xpidl.exe generates C++ header file with invalid (imho) member name for
IHello interface:

  ...
  /* void hello (in long p1); */
  NS_IMETHOD Hello(PRInt32 p1) = 0;
};

So, how do I force it to generate correct one: hello() not Hello()?

-- 
With best regard, Igor.

_______________________________________________
dev-tech-xpcom mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-xpcom

Reply via email to