Home All Groups Group Topic Archive Search About

Export procedure entry point in a dll

Author
30 Apr 2007 9:05 AM
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;

Author
30 Apr 2007 2:08 PM
Kerry Moorman
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


Show quoteHide quote
"Joh" wrote:

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