KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > cairo > cairo_path_t


1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * Contributor(s):
15  *
16  * IBM
17  * - Binding to permit interfacing between Cairo and SWT
18  * - Copyright (C) 2005 IBM Corp. All Rights Reserved.
19  *
20  * ***** END LICENSE BLOCK ***** */

21 package org.eclipse.swt.internal.cairo;
22
23
24 public class cairo_path_t {
25     public int status;
26     public int /*long*/ data;
27     public int num_data;
28     public static final int sizeof = Cairo.cairo_path_t_sizeof();
29 }
30
Popular Tags