/****************************************************************/ /* library.h - Gphoto2 library for the KBGear JamCam v2 and v3 */ /* */ /* Copyright 2001 Chris Pinkham */ /* */ /* Author: Chris Pinkham */ /* */ /* This library is free software; you can redistribute it */ /* and/or modify it under the terms of the GNU Library General */ /* Public License as published by the Free Software Foundation; */ /* either version 2 of the License, or (at your option) any */ /* later version. */ /* */ /* This library is distributed in the hope that it will be */ /* useful, but WITHOUT ANY WARRANTY; without even the implied */ /* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR */ /* PURPOSE. See the GNU Library General Public License for */ /* more details. */ /* */ /* You should have received a copy of the GNU Library General */ /* Public License along with this library; if not, write to the */ /* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,*/ /* Boston, MA 02110-1301 USA */ /****************************************************************/ #ifndef CAMLIBS_JAMCAM_LIBRARY_H #define CAMLIBS_JAMCAM_LIBRARY_H #define RETRIES 10 #define SER_PKT_SIZE 4096 #define USB_PKT_SIZE 4096 #define CHECK(result) {int __res; __res = result; if (__res < 0) return (__res);} struct jamcam_file { unsigned int position; unsigned int width; unsigned int height; unsigned int data_incr; }; int jamcam_enq(Camera *camera); int jamcam_file_count(Camera *camera); struct jamcam_file *jamcam_file_info(Camera *camera, int number); int jamcam_request_image(Camera *camera, CameraFile *file, char *buf, unsigned int *len, int number, GPContext *context ); int jamcam_request_thumbnail(Camera *camera, CameraFile *file, char *buf, unsigned int *len, int number, GPContext *context ); #endif /* !defined(CAMLIBS_JAMCAM_LIBRARY_H) */