From 0b624384cd52be20e61284551d832b499d7b7707 Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Sat, 14 Apr 2012 12:56:48 +0100 Subject: Imported Upstream version 2.1.8.20120216 --- include/jni/linux/jawt_md.h | 43 +++++++++++++++++++++++++++++++++++++++++++ include/jni/linux/jni_md.h | 24 ++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 include/jni/linux/jawt_md.h create mode 100644 include/jni/linux/jni_md.h (limited to 'include/jni/linux') diff --git a/include/jni/linux/jawt_md.h b/include/jni/linux/jawt_md.h new file mode 100644 index 0000000..dbb13e2 --- /dev/null +++ b/include/jni/linux/jawt_md.h @@ -0,0 +1,43 @@ +/* + * @(#)jawt_md.h 1.10 03/01/23 + * + * Copyright 2003 Sun Microsystems, Inc. All rights reserved. + * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +#ifndef _JAVASOFT_JAWT_MD_H_ +#define _JAVASOFT_JAWT_MD_H_ + +#include +#include +#include +#include "jawt.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * X11-specific declarations for AWT native interface. + * See notes in jawt.h for an example of use. + */ +typedef struct jawt_X11DrawingSurfaceInfo { + Drawable drawable; + Display* display; + VisualID visualID; + Colormap colormapID; + int depth; + /* + * Since 1.4 + * Returns a pixel value from a set of RGB values. + * This is useful for paletted color (256 color) modes. + */ + int (JNICALL *GetAWTColor)(JAWT_DrawingSurface* ds, + int r, int g, int b); +} JAWT_X11DrawingSurfaceInfo; + +#ifdef __cplusplus +} +#endif + +#endif /* !_JAVASOFT_JAWT_MD_H_ */ diff --git a/include/jni/linux/jni_md.h b/include/jni/linux/jni_md.h new file mode 100644 index 0000000..9868531 --- /dev/null +++ b/include/jni/linux/jni_md.h @@ -0,0 +1,24 @@ +/* + * @(#)jni_md.h 1.17 03/01/23 + * + * Copyright 2003 Sun Microsystems, Inc. All rights reserved. + * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +#ifndef _JAVASOFT_JNI_MD_H_ +#define _JAVASOFT_JNI_MD_H_ + +#define JNIEXPORT +#define JNIIMPORT +#define JNICALL + +typedef int jint; +#ifdef _LP64 /* 64-bit Solaris */ +typedef long jlong; +#else +typedef long long jlong; +#endif + +typedef signed char jbyte; + +#endif /* !_JAVASOFT_JNI_MD_H_ */ -- cgit v1.2.3