mirror of
https://github.com/openharmony/third_party_cmake.git
synced 2026-07-25 07:05:34 -04:00
20 lines
305 B
Java
20 lines
305 B
Java
class D
|
|
{
|
|
public D()
|
|
{
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|