blob: 408e7edc924a2816eedd507d1169131a1fc0a353 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 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 NOTIFYICONDATAA extends NOTIFYICONDATA {
/** @field cast=(TCHAR) */
public byte szTip[] = new byte [128];
/** @field cast=(TCHAR) */
public byte szInfo[] = new byte [256];
/** @field cast=(TCHAR) */
public byte szInfoTitle[] = new byte [64];
public static final int sizeof = OS.NOTIFYICONDATAA_V2_SIZE;
}