summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2006-12-13 23:11:56 +0000
committerFelipe Heidrich <fheidric>2006-12-13 23:11:56 +0000
commita635ae695a388c1d014060dae5b2e19cde744f31 (patch)
tree6c116d82d5850650b71e22ffd3d5a9f08e1890cf /bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java
parent6fe18155b5624253dc0b86434f7748ab24f21fe1 (diff)
downloadeclipse.platform.swt-a635ae695a388c1d014060dae5b2e19cde744f31.tar.gz
eclipse.platform.swt-a635ae695a388c1d014060dae5b2e19cde744f31.tar.xz
eclipse.platform.swt-a635ae695a388c1d014060dae5b2e19cde744f31.zip
bug 164493 - StyledText doesn't support advanced text services for Korean IME
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java
new file mode 100644
index 0000000000..43ae5d848f
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java
@@ -0,0 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.win32;
+
+public class OSVERSIONINFOEXW extends OSVERSIONINFOEX {
+ public char[] szCSDVersion = new char[128];
+ public static final int sizeof = OS.OSVERSIONINFOEXW_sizeof ();
+}