/trunk/Examples/test-suite/java/extern_declaration_runme.java

# · Java · 21 lines · 17 code · 4 blank · 0 comment · 6 complexity · e7aa6c33192920858e5d1e9e84ec4884 MD5 · raw file

  1. import extern_declaration.*;
  2. public class extern_declaration_runme {
  3. static {
  4. try {
  5. System.loadLibrary("extern_declaration");
  6. } catch (UnsatisfiedLinkError e) {
  7. System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
  8. System.exit(1);
  9. }
  10. }
  11. public static void main(String argv[])
  12. {
  13. if (extern_declaration.externimport(100) != 100) throw new RuntimeException("externimport failed");
  14. if (extern_declaration.externexport(200) != 200) throw new RuntimeException("externexport failed");
  15. if (extern_declaration.externstdcall(300) != 300) throw new RuntimeException("externstdcall failed");
  16. }
  17. }