Exemple #1
0
 public static OSVERSIONINFO GetVersion()
 {
     OSVERSIONINFO res = new OSVERSIONINFO();
         res.dwOSVersionInfoSize = Marshal.SizeOf(res);
         win32api.GetVersionEx(ref res);
         return res;
 }
Exemple #2
0
        public static OSVERSIONINFO GetVersion()
        {
            OSVERSIONINFO res = new OSVERSIONINFO();

            res.dwOSVersionInfoSize = Marshal.SizeOf(res);
            win32api.GetVersionEx(ref res);
            return(res);
        }
Exemple #3
0
			public static extern int GetVersionEx(ref OSVERSIONINFO lpVersionInformation);
Exemple #4
0
 public static extern int GetVersionEx(ref OSVERSIONINFO lpVersionInformation);