blob: b3ff09169b1b777cb7f5becca03d9f6eb2bd9f79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.win32;
public class NOTIFYICONDATA {
public int cbSize;
/** @field cast=(HWND) */
public long /*int*/ hWnd;
public int uID;
public int uFlags;
public int uCallbackMessage;
/** @field cast=(HICON) */
public long /*int*/ hIcon;
public char szTip[] = new char [128];
public int dwState;
public int dwStateMask;
public char szInfo[] = new char [256];
public char szInfoTitle[] = new char [64];
public int uVersion;
public int dwInfoFlags;
public static final int sizeof = OS.NOTIFYICONDATA_V2_SIZE;
}