show/hide this revision's text 2 added 14 characters in body

I suppose you have problems with converting WinAPI declarations. Sometimes you can get away if you just declare your variable as string or integer because that is the real type of value returned.

You can also try marshaling:

<MarshalAsAttribute(UnmanagedType.AsAny)> ByRef buff As Object
show/hide this revision's text 1

I suppose you have problems with converting WinAPI declarations. Sometimes you can get away if you just declare your variable as string or integer because that is the real type of value returned.

You can also try marshaling: ByRef buff As Object