예제 #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);