예제 #1
0
파일: Camera.cs 프로젝트: iainlane/f-spot
 internal static extern ErrorCode gp_camera_file_get_info(HandleRef camera, [MarshalAs(UnmanagedType.LPTStr)] string folder, [MarshalAs(UnmanagedType.LPTStr)] string file, out CameraFileInfo info, HandleRef context);
예제 #2
0
파일: Camera.cs 프로젝트: iainlane/f-spot
 internal static extern ErrorCode gp_camera_file_set_info(HandleRef camera, string folder, string file, CameraFileInfo info, HandleRef context);
예제 #3
0
파일: Camera.cs 프로젝트: iainlane/f-spot
 public void SetFileInfo(string folder, string name, CameraFileInfo fileinfo, Context context)
 {
     Error.CheckError (gp_camera_file_set_info(this.Handle, folder, name, fileinfo, context.Handle));
 }