1 2 // vim:tw=110:ts=4: 3 #ifndef MMD_H 4 #define MMD_H 1 5 6 /************************************************************************************************************* 7 * 8 * FILE : mmd.h 9 * 10 * DATE : $Date: 2004/07/19 08:16:14 $ $Revision: 1.2 $ 11 * Original: 2004/05/17 07:33:14 Revision: 1.18 Tag: hcf7_t20040602_01 12 * Original: 2004/05/11 06:22:59 Revision: 1.17 Tag: hcf7_t7_20040513_01 13 * Original: 2004/04/15 09:24:42 Revision: 1.13 Tag: hcf7_t7_20040415_01 14 * Original: 2004/04/08 15:18:17 Revision: 1.12 Tag: t7_20040413_01 15 * Original: 2004/04/01 15:32:55 Revision: 1.10 Tag: t7_20040401_01 16 * Original: 2004/03/04 16:47:50 Revision: 1.7 Tag: t20040310_01 17 * Original: 2004/03/03 12:47:05 Revision: 1.6 Tag: t20040304_01 18 * Original: 2004/02/25 14:14:39 Revision: 1.5 Tag: t20040302_03 19 * Original: 2004/02/24 13:00:29 Revision: 1.4 Tag: t20040224_01 20 * Original: 2004/01/30 09:59:33 Revision: 1.3 Tag: t20040219_01 21 * 22 * AUTHOR : Nico Valster 23 * 24 * DESC : Definitions and Prototypes for HCF, MSF, UIL as well as USF sources 25 * 26 *************************************************************************************************************** 27 * 28 * 29 * SOFTWARE LICENSE 30 * 31 * This software is provided subject to the following terms and conditions, 32 * which you should read carefully before using the software. Using this 33 * software indicates your acceptance of these terms and conditions. If you do 34 * not agree with these terms and conditions, do not use the software. 35 * 36 * COPYRIGHT © 2001 - 2004 by Agere Systems Inc. All Rights Reserved 37 * All rights reserved. 38 * 39 * Redistribution and use in source or binary forms, with or without 40 * modifications, are permitted provided that the following conditions are met: 41 * 42 * . Redistributions of source code must retain the above copyright notice, this 43 * list of conditions and the following Disclaimer as comments in the code as 44 * well as in the documentation and/or other materials provided with the 45 * distribution. 46 * 47 * . Redistributions in binary form must reproduce the above copyright notice, 48 * this list of conditions and the following Disclaimer in the documentation 49 * and/or other materials provided with the distribution. 50 * 51 * . Neither the name of Agere Systems Inc. nor the names of the contributors 52 * may be used to endorse or promote products derived from this software 53 * without specific prior written permission. 54 * 55 * Disclaimer 56 * 57 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 58 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF 59 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY 60 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN 61 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY 62 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 63 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 64 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 65 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT 66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 67 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 68 * DAMAGE. 69 * 70 * 71 **************************************************************************************************************/ 72 #ifndef HCF_H 73 #include "hcf.h" //just to get going with swig 74 #endif 75 76 EXTERN_C CFG_RANGE_SPEC_STRCT* mmd_check_comp( CFG_RANGES_STRCT *actp, CFG_SUP_RANGE_STRCT *supp ); 77 78 #endif // MMD_H 79