Search results for query: *

  1. M

    passing a struct pointer containing arrays to/from C

    i already fix it. i had to declare that structure field using MarshalAs. <StructLayout(LayoutKind.Sequential)> _ Public Structure REPORT Public index As Byte Public value As Byte <MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> Public leds() As Byte...
  2. M

    passing a struct pointer containing arrays to/from C

    Im having some problems due to vb.net not being able to accept static arrays inside a structure. my vb.net application is talking to a DLL coded in C. the DLL is calling a function inside my vb.net application and it is passing a pointer of a structure. typedef struct { uint8_t index...
  3. M

    Question MD5 source code for modification.

    where can i find the implementation of MD5 for vb.net? i can't use the build in implementation System.Security.Cryptography.MD5 because i need the source code to create a modified version. im trying to clone a modified version of MD5 coded in javascript. unmodified version creates a...
Back
Top