internal static extern ErrorCode gp_port_get_info(HandleRef port, out PortInfo info);
public void SetInfo(PortInfo info) { Error.CheckError (gp_port_set_info (this.Handle, ref info)); }
internal static unsafe extern ErrorCode gp_camera_set_port_info(HandleRef camera, PortInfo info);
internal static extern ErrorCode gp_port_set_info(HandleRef port, ref PortInfo info);
public PortInfo GetInfo() { PortInfo info = new PortInfo (); Error.CheckError (gp_port_get_info (this.Handle, out info)); return info; }
internal static extern ErrorCode gp_camera_get_port_info(HandleRef camera, out PortInfo info);