12 lines
270 B
Java
12 lines
270 B
Java
|
package capturemanager.classes;
|
||
|
|
||
|
abstract class WebCamControlNative {
|
||
|
native protected String getCamParametrs(
|
||
|
long aPtr);
|
||
|
native protected void setCamParametr(
|
||
|
long aPtr,
|
||
|
int aParametrIndex,
|
||
|
int aNewValue,
|
||
|
int aFlag);
|
||
|
}
|