01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.swt.internal.win32;
11:
12: public class SIPINFO {
13: public int cbSize;
14: public int fdwFlags;
15: // RECT rcVisibleDesktop
16: public int rcVisibleDesktop_left;
17: public int rcVisibleDesktop_top;
18: public int rcVisibleDesktop_right;
19: public int rcVisibleDesktop_bottom;
20: // RECT rcSipRect
21: public int rcSipRect_left;
22: public int rcSipRect_top;
23: public int rcSipRect_right;
24: public int rcSipRect_bottom;
25: public int dwImDataSize;
26: public int /*long*/pvImData;
27: public static final int sizeof = OS.SIPINFO_sizeof();
28: }
|