summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java
blob: d6c017a923a4b03e8ee0b721f2db19467bb27887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.opengl.internal.gtk;

import org.eclipse.swt.opengl.Library;

public class XGTK {
	
	static {
		Library.loadLibrary("xgtk");
	}
	
	public static final synchronized native int gdk_x11_gc_get_xdisplay(int gc);
	public static final synchronized native int gdk_x11_drawable_get_xid(int gc);
	public static final synchronized native int XDefaultScreen(int display);
	public static final synchronized native int XDefaultScreenOfDisplay(int display);
	public static final synchronized native int XDefaultDepthOfScreen(int screen);
	public static final synchronized native int XFree(int address);
	public static final synchronized native void free(int ptr);
	public static final synchronized native int malloc(int size);
}