Examples of OSVERSIONINFOA


Examples of org.eclipse.swt.internal.win32.OSVERSIONINFOA

  public static OSVersionInfo getInstance() {
    if (versionInfo == null) {
      OSVERSIONINFO info = new OSVERSIONINFOW();
      info.dwOSVersionInfoSize = OSVERSIONINFOW.sizeof;
      if (!Extension.GetVersionExW((OSVERSIONINFOW) info)) {
        info = new OSVERSIONINFOA();
        info.dwOSVersionInfoSize = OSVERSIONINFOA.sizeof;
        Extension.GetVersionExA((OSVERSIONINFOA) info);
      }
      versionInfo = new OSVersionInfo();
      versionInfo.buildNumber = info.dwBuildNumber;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.