// com.mindprod.JNIexper.Glue.java package com.mindprod.JNIexper; import java.io.*; public class Glue { static { // load Glue.dll containing Glue.nativeWidthInBits System.loadLibrary( "Glue" ); } public static native int widthInBits( int n ); } // end Glue