public static int GetMajorVersion() { APIsStructs.DLLVERSIONINFO2 pdvi = new APIsStructs.DLLVERSIONINFO2(); pdvi.info1.cbSize = Marshal.SizeOf(typeof(APIsStructs.DLLVERSIONINFO2)); DllGetVersion(ref pdvi); return(pdvi.info1.dwMajorVersion); }
static private extern int DllGetVersion( ref APIsStructs.DLLVERSIONINFO2 pdvi);
static public extern int DllGetVersion( ref APIsStructs.DLLVERSIONINFO2 path);