Its part of the JDK for windows <java-home>\include\win32\jni_md.h copied to http://sel2in.com/prjs/java/includesfrom java 6 u29
or do you need it from java 1.3 ? On Mon, Apr 30, 2012 at 23:46, Christian Grobmeier <grobme...@gmail.com> wrote: > Hello, > > following the building how to of log4j1 i now started to create an > ubuntu vm. So far all looks good, and I am pretty much looking forward > to create a release but... > > 3. Copy Win32 version of jni_md.h for NTEventLogAppender.dll > c:\>cd "\Program Files\Java\jdk_1.6.0_16\include\win32 > c:\>scp jni_md.h username@hostname: > > So... I am on OSX creating a Linux VM. Can anybody send me a jni_md.h > file or so? Maybe we should commit it... > ...on the other hand I really dislike that we have such a complicated > build, but it seems NTEventLogAppender is really used right? > > Cheers > Christian > > -- > http://www.grobmeier.de > https://www.timeandbill.de > > --------------------------------------------------------------------- > To unsubscribe, e-mail: log4j-dev-unsubscr...@logging.apache.org > For additional commands, e-mail: log4j-dev-h...@logging.apache.org > -- Regards Tushar Kapila
/* * %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 <windows.h> #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_ */
/* * %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_ */
--------------------------------------------------------------------- To unsubscribe, e-mail: log4j-dev-unsubscr...@logging.apache.org For additional commands, e-mail: log4j-dev-h...@logging.apache.org