mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 13:56:00 +00:00
20 lines
305 B
Java
20 lines
305 B
Java
class E
|
|
{
|
|
public E()
|
|
{
|
|
}
|
|
|
|
public native void printName();
|
|
|
|
static {
|
|
try {
|
|
|
|
System.loadLibrary("D");
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load.\n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
}
|