KickJava   Java API By Example, From Geeks To Geeks.

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


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 PRINTDLG {
14     public int lStructSize; // DWORD
15
public int /*long*/ hwndOwner; // HWND
16
public int /*long*/ hDevMode; // HGLOBAL
17
public int /*long*/ hDevNames; // HGLOBAL
18
public int /*long*/ hDC; // HDC
19
public int Flags; // DWORD
20
public short nFromPage; // WORD
21
public short nToPage; // WORD
22
public short nMinPage; // WORD
23
public short nMaxPage; // WORD
24
public short nCopies; // WORD
25
public int /*long*/ hInstance; // HINSTANCE
26
public int /*long*/ lCustData; // LPARAM
27
public int /*long*/ lpfnPrintHook; // LPPRINTHOOKPROC
28
public int /*long*/ lpfnSetupHook; // LPSETUPHOOKPROC
29
public int /*long*/ lpPrintTemplateName; // LPCTSTR
30
public int /*long*/ lpSetupTemplateName; // LPCTSTR
31
public int /*long*/ hPrintTemplate; // HGLOBAL
32
public int /*long*/ hSetupTemplate; // HGLOBAL
33
public static final int sizeof = OS.PRINTDLG_sizeof ();
34 }
35
Popular Tags