blob: ed526cb89736175f61409250d726aa4e9b70daed [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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 SHMENUBARINFO {
public int cbSize;
/** @field cast=(HWND) */
public long /*int*/ hwndParent;
public int dwFlags;
public int nToolBarId;
/** @field cast=(HINSTANCE) */
public long /*int*/ hInstRes;
public int nBmpId;
public int cBmpImages;
/** @field cast=(HWND) */
public long /*int*/ hwndMB;
public static final int sizeof = OS.IsSP ? 36 : OS.SHMENUBARINFO_sizeof ();
}