mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 15:19:39 +00:00
18c3714f4f
Preserve semicolons in the value.
20 lines
305 B
Java
20 lines
305 B
Java
class C
|
|
{
|
|
public C()
|
|
{
|
|
}
|
|
|
|
public native void printName();
|
|
|
|
static {
|
|
try {
|
|
|
|
System.loadLibrary("B");
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load.\n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
}
|