]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/gfx/clipboard/headers/Win32Constants.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / gfx / clipboard / headers / Win32Constants.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.utils.ui.gfx.clipboard.headers;
13
14 public class Win32Constants {
15     //biCompression constants (wingdi.h)
16     public static final int BI_RGB = 0;
17     public static final int BI_RLE8 = 1;
18     public static final int BI_RLE24 = 2;
19     public static final int BI_BITFIELDS = 3;
20     public static final int BI_JPEG = 4;
21     public static final int BI_PNG = 5;
22     
23     //Clipboard constants (winuser.h)
24     public static final int CF_TEXT = 1;
25     public static final int CF_BITMAP = 2;
26     public static final int CF_METAFILEPICT = 3;
27     public static final int CF_SYLK = 4;
28     public static final int CF_DIF = 5;
29     public static final int CF_TIFF = 6;
30     public static final int CF_OEMTEXT = 7;
31     public static final int CF_DIB = 8;
32     public static final int CF_PALETTE = 9;
33     // there's more than these, but those are not currently needed
34
35 }