summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2010-02-25 20:37:17 +0000
committerFelipe Heidrich <fheidric>2010-02-25 20:37:17 +0000
commitf1858832ffa0e2e37c964bd987d22b705b30fc77 (patch)
treeb08466e93737368121111c803509c8c2a900094b /bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java
parent8510fb925564d40c44c548c85b8662dfa30bca39 (diff)
downloadeclipse.platform.swt-f1858832ffa0e2e37c964bd987d22b705b30fc77.tar.gz
eclipse.platform.swt-f1858832ffa0e2e37c964bd987d22b705b30fc77.tar.xz
eclipse.platform.swt-f1858832ffa0e2e37c964bd987d22b705b30fc77.zip
Bug 293229 - support Windows 7 jump lists for Eclipse-specific actions
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java
new file mode 100644
index 0000000000..5cedc78177
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/PROPERTYKEY.java
@@ -0,0 +1,18 @@
+/*******************************************************************************
+ * Copyright (c) 2010 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 PROPERTYKEY {
+ /** @field flags=struct */
+ public byte [] fmtid = new byte [16];
+ public int pid;
+ public static final int sizeof = OS.PROPERTYKEY_sizeof ();
+}