blob: 4f71f480422b57f598b0a7e5488e8435cea202df [file] [log] [blame]
package org.eclipse.swt.internal.win32;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class REBARBANDINFO {
public int cbSize;
public int fMask;
public int fStyle;
public int clrFore;
public int clrBack;
public int lpText;
public int cch;
public int iImage;
public int hwndChild;
public int cxMinChild;
public int cyMinChild;
public int cx;
public int hbmBack;
public int wID;
public int cyChild;
public int cyMaxChild;
public int cyIntegral;
public int cxIdeal;
public int lParam;
public int cxHeader;
/* Note in WinCE. The field cxHeader is not defined. */
public static final int sizeof = OS.IsWinCE ? 76 : 80;
}