blob: 3a5a502142456e503ea00ef52fad2143ebf7db5e [file] [log] [blame]
package org.eclipse.swt.internal.win32;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
public class OSVERSIONINFO {
public int dwOSVersionInfoSize;
public int dwMajorVersion;
public int dwMinorVersion;
public int dwBuildNumber;
public int dwPlatformId;
// TCHAR szCSDVersion [128];
// public char [] szCSDVersion = new char [128];
public static final int sizeofW = 276;
public static final int sizeofA = 148;
public static /*final*/ int sizeof = OS.IsUnicode ? sizeofW : sizeofA;
}