1 /* 2 * This library is free software; you can redistribute it and/or 3 * modify it under the terms of the GNU Lesser General Public 4 * License as published by the Free Software Foundation; either 5 * version 2.1 of the License, or (at your option) any later version. 6 * 7 * This library is distributed in the hope that it will be useful, 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 * Lesser General Public License for more details. 11 * 12 * You should have received a copy of the GNU Lesser General Public 13 * License along with this library; if not, write to the Free Software 14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 15 */ 16 17 /* This file is parsed by m4 and windres and RC.EXE so please keep it simple. */ 18 #include "version_nano.h" 19 #ifndef LIBUSB_MAJOR 20 #define LIBUSB_MAJOR 1 21 #endif 22 #ifndef LIBUSB_MINOR 23 #define LIBUSB_MINOR 0 24 #endif 25 #ifndef LIBUSB_MICRO 26 #define LIBUSB_MICRO 17 27 #endif 28 #ifndef LIBUSB_NANO 29 #define LIBUSB_NANO 0 30 #endif 31 /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */ 32 #ifndef LIBUSB_RC 33 #define LIBUSB_RC "" 34 #endif 35