Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 44d16a2605c2dd288a195a4cd75b0f69c5b53927 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2017 Martin Karpisek and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Martin Karpisek <martin.karpisek@gmail.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.com.win32;

/**
 * Function number constants for IShellItem COM interface
 */
public class ShellItemVtbl{
    public static final int QUERY_INTERFACE = 0;
    public static final int ADD_REF = 1;
    public static final int RELEASE = 2;
    public static final int BIND_TO_HANDLER = 3;
    public static final int GET_PARENT = 4;
    public static final int GET_DISPLAY_NAME = 5;
    public static final int GET_ATTRIBUTES = 6;
    public static final int COMPARE = 7;
}

Back to the top