Raritan PX2/PX3 JSON-RPC API
WebcamChannel.idl
1 #include <Webcam.idl>
2 
4 module webcam {
5 
7  interface Channel {
11  constant int NO_ERROR = 0;
12  constant int ERR_NOT_AVAILABLE = 2;
13  constant int ERR_NO_SUCH_OBJECT = 3;
14 
20  string getClientType();
21 
27  Webcam_2_0_0 getWebcam();
28 
34  boolean isAvailable();
35 
40  void release();
41 
51  int captureImage(out Image_2_0_0 image);
52 
63  int triggerCapture(out string captureToken);
64  };
65 }
The channel interface.
Definition: WebcamChannel.idl:7
Image.
Definition: Webcam.idl:57
Webcam Management.
Definition: StorageManager.idl:4
The webcam interface.
Definition: Webcam.idl:78