Module: wine Branch: refs/heads/master Commit: 40e7ef3a1dc92dcb198835ede0de8bb2725b417b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=40e7ef3a1dc92dcb198835ed...
Author: Marcus Meissner marcus@jet.franken.de Date: Mon May 8 20:09:37 2006 +0200
gphoto.ds: Implemented a libgphoto2 import driver, based on the sane.ds driver.
Wrote a GUI import dialog. With help from Aric Stewart.
---
configure | 321 ++++++++++++++++++- configure.ac | 32 ++ dlls/Makefile.in | 1 dlls/gphoto2.ds/.gitignore | 2 dlls/gphoto2.ds/Makefile.in | 22 + dlls/gphoto2.ds/capability.c | 553 ++++++++++++++++++++++++++++++++ dlls/gphoto2.ds/ds_ctrl.c | 610 +++++++++++++++++++++++++++++++++++ dlls/gphoto2.ds/ds_image.c | 673 +++++++++++++++++++++++++++++++++++++++ dlls/gphoto2.ds/gphoto2.ds.spec | 1 dlls/gphoto2.ds/gphoto2_En.rc | 53 +++ dlls/gphoto2.ds/gphoto2_i.h | 260 +++++++++++++++ dlls/gphoto2.ds/gphoto2_main.c | 676 +++++++++++++++++++++++++++++++++++++++ dlls/gphoto2.ds/resource.h | 30 ++ dlls/gphoto2.ds/rsrc.rc | 29 ++ dlls/gphoto2.ds/ui.c | 257 +++++++++++++++ include/config.h.in | 3 16 files changed, 3521 insertions(+), 2 deletions(-) create mode 100644 dlls/gphoto2.ds/.gitignore create mode 100644 dlls/gphoto2.ds/Makefile.in create mode 100644 dlls/gphoto2.ds/capability.c create mode 100644 dlls/gphoto2.ds/ds_ctrl.c create mode 100644 dlls/gphoto2.ds/ds_image.c create mode 100644 dlls/gphoto2.ds/gphoto2.ds.spec create mode 100644 dlls/gphoto2.ds/gphoto2_En.rc create mode 100644 dlls/gphoto2.ds/gphoto2_i.h create mode 100644 dlls/gphoto2.ds/gphoto2_main.c create mode 100644 dlls/gphoto2.ds/resource.h create mode 100644 dlls/gphoto2.ds/rsrc.rc create mode 100644 dlls/gphoto2.ds/ui.c
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=40e7ef3a1dc92dcb1988...