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);
internal static extern ErrorCode gp_camera_file_set_info(HandleRef camera, string folder, string file, CameraFileInfo info, HandleRef context);
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)); }