From c7d265f94fbc6acb5f147667e7976f5854eb00d1 Mon Sep 17 00:00:00 2001 From: badlogicgames Date: Thu, 16 Dec 2010 15:33:46 +0000 Subject: [PATCH] [added] win32 jni headers --- gdx/jni/jni-headers/win32/jawt_md.h | 41 +++++++++++++++++++++++++++++++++++++ gdx/jni/jni-headers/win32/jni_md.h | 19 +++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 gdx/jni/jni-headers/win32/jawt_md.h create mode 100644 gdx/jni/jni-headers/win32/jni_md.h diff --git a/gdx/jni/jni-headers/win32/jawt_md.h b/gdx/jni/jni-headers/win32/jawt_md.h new file mode 100644 index 000000000..82ba0347d --- /dev/null +++ b/gdx/jni/jni-headers/win32/jawt_md.h @@ -0,0 +1,41 @@ +/* + * %W% %E% + * + * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. + * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +#ifndef _JAVASOFT_JAWT_MD_H_ +#define _JAVASOFT_JAWT_MD_H_ + +#include +#include "jawt.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Win32-specific declarations for AWT native interface. + * See notes in jawt.h for an example of use. + */ +typedef struct jawt_Win32DrawingSurfaceInfo { + /* Native window, DDB, or DIB handle */ + union { + HWND hwnd; + HBITMAP hbitmap; + void* pbits; + }; + /* + * This HDC should always be used instead of the HDC returned from + * BeginPaint() or any calls to GetDC(). + */ + HDC hdc; + HPALETTE hpalette; +} JAWT_Win32DrawingSurfaceInfo; + +#ifdef __cplusplus +} +#endif + +#endif /* !_JAVASOFT_JAWT_MD_H_ */ diff --git a/gdx/jni/jni-headers/win32/jni_md.h b/gdx/jni/jni-headers/win32/jni_md.h new file mode 100644 index 000000000..9ac4718e9 --- /dev/null +++ b/gdx/jni/jni-headers/win32/jni_md.h @@ -0,0 +1,19 @@ +/* + * %W% %E% + * + * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. + * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +#ifndef _JAVASOFT_JNI_MD_H_ +#define _JAVASOFT_JNI_MD_H_ + +#define JNIEXPORT __declspec(dllexport) +#define JNIIMPORT __declspec(dllimport) +#define JNICALL __stdcall + +typedef long jint; +typedef __int64 jlong; +typedef signed char jbyte; + +#endif /* !_JAVASOFT_JNI_MD_H_ */ -- 2.11.0