Export procedure entry point in a dll

  • Thread starter Thread starter Joh
  • Start date Start date
J

Joh

I'm developing a dll with VB.NET and Visual Studio 2005 to be used as
a plugin in Skype. I'm supposed to make my dll export the entry point
of a procedure called DllInitSkypePluginB. Anyone now how to export an
entry point of a procedure in a VB.NET dll?


The definition of DllInitSkypePluginB in the Skype SDK documentation
is:

procedure DllInitSkypePluginB(
ItemID: WideString;
ColManager: ICollectionManager;
Plugin: ISkypePluginB;
Params: WideString = ''
); stdcall;
 
Joh,

As far as I know, you cannot create that kind of dll with VB.Net.

Does Skype support using COM? If so, you could create a dll that worked with
COM.

Kerry Moorman
 
Back
Top