summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcvs2svn <platform-releng-dev@eclipse.org>2003-09-16 20:44:06 +0000
committercvs2svn <platform-releng-dev@eclipse.org>2003-09-16 20:44:06 +0000
commit7d0406f3cd34a4ec2370b47adca24ce96b36611c (patch)
tree58248b54090a76279275391ad0e5384ebbbd0bb6
parent0050e6ec6ff8c8c7bb266dc41b0025073afe0e61 (diff)
downloadeclipse.platform.swt-7d0406f3cd34a4ec2370b47adca24ce96b36611c.tar.gz
eclipse.platform.swt-7d0406f3cd34a4ec2370b47adca24ce96b36611c.tar.xz
eclipse.platform.swt-7d0406f3cd34a4ec2370b47adca24ce96b36611c.zip
This commit was manufactured by cvs2svn to create branch 'R2_1_maintenance'.
Cherrypick from master 2003-09-16 20:44:05 UTC Felipe Heidrich <fheidric> '43125': bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/COMBOBOXINFO.java
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/COMBOBOXINFO.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/COMBOBOXINFO.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/COMBOBOXINFO.java
new file mode 100644
index 0000000000..6f644c43d4
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/COMBOBOXINFO.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are 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
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.win32;
+
+public class COMBOBOXINFO {
+ public int cbSize;
+ public int itemLeft;
+ public int itemTop;
+ public int itemRight;
+ public int itemBottom;
+ public int buttonLeft;
+ public int buttonTop;
+ public int buttonRight;
+ public int buttonBottom;
+ public int stateButton;
+ public int hwndCombo;
+ public int hwndItem;
+ public int hwndList;
+ public static final int sizeof = 52;
+} \ No newline at end of file