1*10253Sxiuyan.wang@Sun.COM /* 2*10253Sxiuyan.wang@Sun.COM * CDDL HEADER START 3*10253Sxiuyan.wang@Sun.COM * 4*10253Sxiuyan.wang@Sun.COM * The contents of this file are subject to the terms of the 5*10253Sxiuyan.wang@Sun.COM * Common Development and Distribution License (the "License"). 6*10253Sxiuyan.wang@Sun.COM * You may not use this file except in compliance with the License. 7*10253Sxiuyan.wang@Sun.COM * 8*10253Sxiuyan.wang@Sun.COM * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*10253Sxiuyan.wang@Sun.COM * or http://www.opensolaris.org/os/licensing. 10*10253Sxiuyan.wang@Sun.COM * See the License for the specific language governing permissions 11*10253Sxiuyan.wang@Sun.COM * and limitations under the License. 12*10253Sxiuyan.wang@Sun.COM * 13*10253Sxiuyan.wang@Sun.COM * When distributing Covered Code, include this CDDL HEADER in each 14*10253Sxiuyan.wang@Sun.COM * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*10253Sxiuyan.wang@Sun.COM * If applicable, add the following below this CDDL HEADER, with the 16*10253Sxiuyan.wang@Sun.COM * fields enclosed by brackets "[]" replaced with your own identifying 17*10253Sxiuyan.wang@Sun.COM * information: Portions Copyright [yyyy] [name of copyright owner] 18*10253Sxiuyan.wang@Sun.COM * 19*10253Sxiuyan.wang@Sun.COM * CDDL HEADER END 20*10253Sxiuyan.wang@Sun.COM */ 21*10253Sxiuyan.wang@Sun.COM 22*10253Sxiuyan.wang@Sun.COM /* 23*10253Sxiuyan.wang@Sun.COM * Copyright 2007-2009 Myricom, Inc. All rights reserved. 24*10253Sxiuyan.wang@Sun.COM * Use is subject to license terms. 25*10253Sxiuyan.wang@Sun.COM */ 26*10253Sxiuyan.wang@Sun.COM 27*10253Sxiuyan.wang@Sun.COM #ifndef MYRI10GE_VERSION_H 28*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_VERSION_H 29*10253Sxiuyan.wang@Sun.COM 30*10253Sxiuyan.wang@Sun.COM #ifdef __cplusplus 31*10253Sxiuyan.wang@Sun.COM extern "C" { 32*10253Sxiuyan.wang@Sun.COM #endif 33*10253Sxiuyan.wang@Sun.COM 34*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_MAJOR_VERSION 1 35*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_MINOR_VERSION 4 36*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_TEENY_VERSION 5 37*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_VERSION_SUFFIX "gldv3" 38*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_VERSION_STR "1.4.5gldv3" 39*10253Sxiuyan.wang@Sun.COM #define MYRI10GE_SHORT_VERSION_STR "1.4.5" 40*10253Sxiuyan.wang@Sun.COM 41*10253Sxiuyan.wang@Sun.COM #ifdef __cplusplus 42*10253Sxiuyan.wang@Sun.COM } 43*10253Sxiuyan.wang@Sun.COM #endif 44*10253Sxiuyan.wang@Sun.COM 45*10253Sxiuyan.wang@Sun.COM #endif /* MYRI10GE_VERSION_H */ 46