webcam-capture-driver-native/src/main/java/capturemanager/classes/LogPrintOutControlNative.java

22 lines
448 B
Java

package capturemanager.classes;
abstract class LogPrintOutControlNative
{
native protected void addPrintOutDestinationNative(
long aPtr,
int aLevelType,
String aFilePath);
native protected void removePrintOutDestinationNative(
long aPtr,
int aLevelType,
String aFilePath);
native protected void setVerboseNative(
long aPtr,
int aLevelType,
String aFilePath,
boolean aState);
}