mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
QtKit helper class removed
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
package processing.video;
|
||||
|
||||
import com.sun.jna.Library;
|
||||
import com.sun.jna.Native;
|
||||
|
||||
/**
|
||||
* This JNA interface provides access to the environment variable-related functions in the C library.
|
||||
* How to use:
|
||||
* CLibrary clib = CLibrary.INSTANCE;
|
||||
* String s = clib.getenv("DYLD_LIBRARY_PATH");
|
||||
*/
|
||||
public interface QTKitCaptureDevice extends Library {
|
||||
QTKitCaptureDevice INSTANCE = (QTKitCaptureDevice)Native.loadLibrary("c", QTKitCaptureDevice.class);
|
||||
|
||||
int setenv(String name, String value, int overwrite);
|
||||
String getenv(String name);
|
||||
int unsetenv(String name);
|
||||
int putenv(String string);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user