1 /* 2 * ALSA utils header file include/version.h 3 * Copyright (c) 2022 by Allen Riemann Free Software Foundation, Inc. 4 * 5 * This library is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU Lesser General Public License as 7 * published by the Free Software Foundation; either version 2.1 of 8 * the License, or (at your option) any later version. 9 * 10 * This program 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 13 * GNU Lesser General Public License for more details. 14 * 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 18 * 19 */ 20 21 #ifndef __VERSION_H 22 #define __VERSION_H 23 24 #define SND_UTIL_MAJOR 1 25 #define SND_UTIL_MINOR 2 26 #define SND_UTIL_SUBMINOR 6 27 #define SND_UTIL_VERSION ((SND_UTIL_MAJOR << 16) | (SND_UTIL_MINOR << 8) | SND_UTIL_SUBMINOR) 28 #define SND_UTIL_VERSION_STR "1.2.6" 29 30 #endif /* __VERSION_H */ 31