Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2009-10-02 20:58:07 +0000
committerGrant Gayed2009-10-02 20:58:07 +0000
commit056762a1d7c74e75bfac132d1e756819b6f3b39e (patch)
treee645e7459407ba289c710b04410e048d0425c17a /bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java
parent2c8a13d0df1694740c0af6220e23682b3ddd10de (diff)
downloadeclipse.platform.swt-056762a1d7c74e75bfac132d1e756819b6f3b39e.tar.gz
eclipse.platform.swt-056762a1d7c74e75bfac132d1e756819b6f3b39e.tar.xz
eclipse.platform.swt-056762a1d7c74e75bfac132d1e756819b6f3b39e.zip
60387 and 283223: Browser.setUrl() with header values and post args
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java
new file mode 100644
index 0000000000..020c1a6dd2
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2009 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 SAFEARRAY {
+ public short cDims;
+ public short fFeatures;
+ public int cbElements;
+ public int cLocks;
+ /** @field cast=(PVOID) */
+ public int /*long*/ pvData;
+ /** @field accessor=rgsabound[0] */
+ public SAFEARRAYBOUND rgsabound;
+
+ public static final int sizeof = OS.SAFEARRAY_sizeof ();
+}

Back to the top