~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/common/camera_control.h

  • Committer: Package Import Robot
  • Author(s): David Bremner
  • Date: 2011-11-13 10:46:00 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111113104600-56c59agrs615gjim
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
    This file is part of darktable,
3
 
    copyright (c) 2010 henrik andersson.
 
3
    copyright (c) 2010-2011 henrik andersson.
4
4
 
5
5
    darktable is free software: you can redistribute it and/or modify
6
6
    it under the terms of the GNU General Public License as published by
38
38
 
39
39
  /** Camera configuration cache */
40
40
  CameraWidget *configuration;
 
41
 
 
42
  /** Registered timeout func */  
 
43
  CameraTimeoutFunc timeout;
 
44
 
41
45
  gboolean config_changed;
42
46
  dt_pthread_mutex_t config_lock;
43
47
  /** This camera/device can import images. */
63
67
 
64
68
  /** gphoto2 camera pointer */
65
69
  Camera *gpcam;
 
70
 
 
71
  /** gphoto2 context */
 
72
  GPContext *gpcontext;
66
73
}
67
74
dt_camera_t;
68
75