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

22 lines
448 B
Java
Raw Normal View History

2021-06-17 16:35:42 +08:00
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);
}