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

12 lines
270 B
Java
Raw Normal View History

2021-06-17 16:35:42 +08:00
package capturemanager.classes;
abstract class WebCamControlNative {
native protected String getCamParametrs(
long aPtr);
native protected void setCamParametr(
long aPtr,
int aParametrIndex,
int aNewValue,
int aFlag);
}