Exemple #1
1
 internal static extern ErrorCode gp_port_get_info(HandleRef port, out PortInfo info);
Exemple #2
1
 public void SetInfo(PortInfo info)
 {
     Error.CheckError (gp_port_set_info (this.Handle, ref info));
 }
Exemple #3
1
 internal static unsafe extern ErrorCode gp_camera_set_port_info(HandleRef camera, PortInfo info);
Exemple #4
0
 internal static extern ErrorCode gp_port_set_info(HandleRef port, ref PortInfo info);
Exemple #5
0
        public PortInfo GetInfo()
        {
            PortInfo info = new PortInfo ();

            Error.CheckError (gp_port_get_info (this.Handle, out info));

            return info;
        }
Exemple #6
0
 internal static extern ErrorCode gp_camera_get_port_info(HandleRef camera, out PortInfo info);