1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[224873] use Bundle-NativeCode for specifying DLL path

This commit is contained in:
Martin Oberhuber 2008-04-02 14:15:56 +00:00
parent a631aa6935
commit 14d220ec9c
2 changed files with 2 additions and 1 deletions

View file

@ -8,4 +8,5 @@ Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.eclipse.tm.internal.rapi;x-internal:=true,
org.eclipse.tm.rapi
Bundle-NativeCode: /lib/os/win32/x86/jrapi.dll;osname="Win32";processor=x86
Bundle-RequiredExecutionEnvironment: J2SE-1.4

View file

@ -18,7 +18,7 @@ package org.eclipse.tm.rapi;
public class OS {
static {
System.loadLibrary("lib/os/win32/x86/jrapi"); //$NON-NLS-1$
System.loadLibrary("jrapi"); //$NON-NLS-1$
}
public static final int NOERROR = 0;