コード例 #1
1
ファイル: Port.cs プロジェクト: iainlane/f-spot
 internal static extern ErrorCode gp_port_get_info(HandleRef port, out PortInfo info);
コード例 #2
1
ファイル: Port.cs プロジェクト: iainlane/f-spot
 public void SetInfo(PortInfo info)
 {
     Error.CheckError (gp_port_set_info (this.Handle, ref info));
 }
コード例 #3
1
ファイル: Camera.cs プロジェクト: iainlane/f-spot
 internal static unsafe extern ErrorCode gp_camera_set_port_info(HandleRef camera, PortInfo info);
コード例 #4
0
ファイル: Port.cs プロジェクト: iainlane/f-spot
 internal static extern ErrorCode gp_port_set_info(HandleRef port, ref PortInfo info);
コード例 #5
0
ファイル: Port.cs プロジェクト: iainlane/f-spot
        public PortInfo GetInfo()
        {
            PortInfo info = new PortInfo ();

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

            return info;
        }
コード例 #6
0
ファイル: Camera.cs プロジェクト: iainlane/f-spot
 internal static extern ErrorCode gp_camera_get_port_info(HandleRef camera, out PortInfo info);