Export procedure entry point in a dll

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;
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top