You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
472 B
Java
14 lines
472 B
Java
package com.shibofu.spring.util;
|
|
|
|
import com.sun.jna.Native;
|
|
import com.sun.jna.Platform;
|
|
import com.sun.jna.win32.StdCallLibrary;
|
|
|
|
public interface PacsAutoPrintPDF extends StdCallLibrary {
|
|
PacsAutoPrintPDF INSTANCE = (PacsAutoPrintPDF) Native.loadLibrary(
|
|
(Platform.isWindows() ? "PacsAutoPrintPDF" : "c"),
|
|
PacsAutoPrintPDF.class);
|
|
|
|
boolean GetPDF(String accessionNumber, String filename);
|
|
void setServerInfo(String host, int port);
|
|
} |