c# - How do I pass address of UInt32 to UIntPtr in VB.NET? -
i have below code written in c#. want implement same in vb.net.
can please help, not able find way pass address of uint32 in vb.net
uint32 rawenclen= 0; [dllimport("liccryptdll.dll", entrypoint = "decryptfileep", exactspelling = false, callingconvention = callingconvention.cdecl)] static extern unsafe bool decryptfileep(char[] blofile, byte[] rawenccert, uint32* rawenclen); if (decryptfileep(blofile, rawenccert, &rawenclen)) { console.writeline("data decrypted") } i want similar this: enter link description here
Comments
Post a Comment