KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > win32 > DROPFILES


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.internal.win32;
12
13 public class DROPFILES {
14     public int pFiles; // Offset of the file list from the beginning of this structure, in bytes.
15
// POINT pt; // Drop point. The coordinates depend on fNC.
16
public int pt_x;
17     public int pt_y;
18     public int fNC; // Nonclient area flag. If this member is TRUE, pt specifies the screen
19
// coordinates of a point in a window's nonclient area. If it is FALSE,
20
// pt specifies the client coordinates of a point in the client area.
21
public int fWide; // Value that indicates whether the file contains ANSI or Unicode
22
// characters. If it is zero, it contains ANSI characters. Otherwise, it
23
// contains Unicode characters.
24
public static final int sizeof = OS.DROPFILES_sizeof ();
25 }
26
Popular Tags