Skip to content

Instantly share code, notes, and snippets.

@AndrewTheTM
Created October 5, 2012 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewTheTM/3839832 to your computer and use it in GitHub Desktop.
Save AndrewTheTM/3839832 to your computer and use it in GitHub Desktop.
Voyager DLL Interface Java
public interface voyagerDLL extends Library{
voyagerDLL INSTANCE=(voyagerDLL) Native.loadLibrary("VoyagerFileAccess",voyagerDLL.class);
Pointer MatReaderOpen(String filename, Pointer errMsg, int errBuffLen);
int MatReaderGetNumMats(Pointer state);
int MatReaderGetNumZones(Pointer state);
int MatReaderGetMatrixNames(Pointer state, String[] names);
int MatReaderGetRow(Pointer state, int MatNumber, int RowNumber, double[] buffer);
void MatReaderClose(Pointer state);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment