Windows: Display error code in default case of windows_transfer_callback
[libusbx.git] / examples / listdevs.c
blob8538bfa2e4e7f96b8b1b22ed828a62071c2302a9
1 /*
2 * libusbx example program to list devices on the bus
3 * Copyright © 2007 Daniel Drake <dsd@gentoo.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <stdio.h>
21 #if !defined(_WIN32_WCE)
22 #include <sys/types.h>
23 #endif
25 #include "libusb.h"
27 static void print_devs(libusb_device **devs)
29 libusb_device *dev;
30 int i = 0;
32 while ((dev = devs[i++]) != NULL) {
33 struct libusb_device_descriptor desc;
34 int r = libusb_get_device_descriptor(dev, &desc);
35 if (r < 0) {
36 fprintf(stderr, "failed to get device descriptor");
37 return;
40 printf("%04x:%04x (bus %d, device %d)\n",
41 desc.idVendor, desc.idProduct,
42 libusb_get_bus_number(dev), libusb_get_device_address(dev));
46 int main(void)
48 libusb_device **devs;
49 int r;
50 ssize_t cnt;
52 r = libusb_init(NULL);
53 if (r < 0)
54 return r;
56 cnt = libusb_get_device_list(NULL, &devs);
57 if (cnt < 0)
58 return (int) cnt;
60 print_devs(devs);
61 libusb_free_device_list(devs, 1);
63 libusb_exit(NULL);
64 return 0;