~ubuntu-branches/ubuntu/vivid/isight-firmware-tools/vivid

« back to all changes in this revision

Viewing changes to src/load.h

  • Committer: Bazaar Package Importer
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2009-03-04 20:19:36 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090304201936-5accw1ub5r75oaxl
Tags: 1.4.1-1
* New upstream release
  - Remove patches(02_ja-po, 03_support_mba, 05_support_macosx_5.5).
* Update debian/rules
  - Add DEB_CONFIGURE_USER_FLAGS and set "--disable-udev --enable-hal"
* Updated Galician debconf templates. (Closes: #512242)
* Update Japanese po. (06_japanese.po.dpatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
#ifndef _LOAD_H_
40
40
#define _LOAD_H_
41
41
 
 
42
#define APPLE_VENDOR_ID         0x05AC
 
43
#define ISIGHT_PRODUCT_ID       0x8300
 
44
 
42
45
#define ift_debug(args...)      syslog(LOG_DEBUG, args)
43
46
#define ift_message(args...)    syslog(LOG_INFO, args)
44
47
#define ift_warning(args...)    syslog(LOG_WARNING, args)
46
49
 
47
50
int                     load_firmware(struct usb_device *dev, char *firmware);
48
51
struct usb_device*      find_usb_device(const gchar *bus_id, const gchar *dev_id);
 
52
struct usb_device*      find_usb_product(const guint32 vendor_id, const guint32 product_id);
49
53
 
50
54
#endif