Add LGPL header.
This commit is contained in:
		
							parent
							
								
									4d87a3c6f9
								
							
						
					
					
						commit
						bb58630b79
					
				@ -1,12 +1,33 @@
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $RCSfile: node.h,v $														   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $Revision: 2.3 $															   */
 | 
			
		||||
/* $Revision: 2.4 $															   */
 | 
			
		||||
/* $Name:  $															   */
 | 
			
		||||
/* $Date: 2002/02/27 16:04:10 $													   */
 | 
			
		||||
/* $Date: 2002/02/28 19:02:33 $													   */
 | 
			
		||||
/* $Author: agibert $															   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* This file is part of LibNode                                                    */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is free software; you can redistribute it and/or modify              */
 | 
			
		||||
/*    it under the terms of the  GNU Lesser General Public Licence as published by */
 | 
			
		||||
/*    the Free Software Foundation; either version 2.1 of the License, or          */
 | 
			
		||||
/*    (at your option) any later version.                                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is distributed in the hope that it will be useful,                   */
 | 
			
		||||
/*    but WITHOUT ANY WARRANTY; without even the implied warranty of               */
 | 
			
		||||
/*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                */
 | 
			
		||||
/*    GNU Lesser General Public License for more details.                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    You should have received a copy of the GNU LesserGeneral Public License      */
 | 
			
		||||
/*    along with Foobar; if not, write to the Free Software                        */
 | 
			
		||||
/*    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#ifndef _LIBNODE_H_
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,32 @@
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $RCSfile: libnode.c,v $														   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $Revision: 2.3 $															   */
 | 
			
		||||
/* $Revision: 2.4 $															   */
 | 
			
		||||
/* $Name:  $															   */
 | 
			
		||||
/* $Date: 2002/02/27 16:08:07 $													   */
 | 
			
		||||
/* $Date: 2002/02/28 19:02:32 $													   */
 | 
			
		||||
/* $Author: agibert $															   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* This file is part of LibNode                                                    */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is free software; you can redistribute it and/or modify              */
 | 
			
		||||
/*    it under the terms of the  GNU Lesser General Public Licence as published by */
 | 
			
		||||
/*    the Free Software Foundation; either version 2.1 of the License, or          */
 | 
			
		||||
/*    (at your option) any later version.                                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is distributed in the hope that it will be useful,                   */
 | 
			
		||||
/*    but WITHOUT ANY WARRANTY; without even the implied warranty of               */
 | 
			
		||||
/*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                */
 | 
			
		||||
/*    GNU Lesser General Public License for more details.                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    You should have received a copy of the GNU LesserGeneral Public License      */
 | 
			
		||||
/*    along with Foobar; if not, write to the Free Software                        */
 | 
			
		||||
/*    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#define _LIBNODE_C_
 | 
			
		||||
@ -14,7 +34,7 @@
 | 
			
		||||
#include <libnode.h>
 | 
			
		||||
 | 
			
		||||
#ifdef _LIBVER
 | 
			
		||||
VER_INFO_EXPORT (libnode,"$Revision: 2.3 $", "$Name:  $",__FILE__,"$Author: agibert $")
 | 
			
		||||
VER_INFO_EXPORT (libnode,"$Revision: 2.4 $", "$Name:  $",__FILE__,"$Author: agibert $")
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -43,7 +63,7 @@ NDT_Status  ND_Default_Manager( NDT_Root  *Root_Ptr, NDT_Index_Id  Index_Id, NDT
 | 
			
		||||
 | 
			
		||||
            Command_Name = "NDD_CMD_MANAGER_VERSION";
 | 
			
		||||
 | 
			
		||||
            *Version_Name_Ptr = "$Revision: 2.3 $   $Name:  $   $Date: 2002/02/27 16:08:07 $   $Author: agibert $";
 | 
			
		||||
            *Version_Name_Ptr = "$Revision: 2.4 $   $Name:  $   $Date: 2002/02/28 19:02:32 $   $Author: agibert $";
 | 
			
		||||
 | 
			
		||||
            return( NDS_OK);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,32 @@
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $RCSfile: libnode.h,v $														   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* $Revision: 2.1 $															   */
 | 
			
		||||
/* $Revision: 2.2 $															   */
 | 
			
		||||
/* $Name:  $															   */
 | 
			
		||||
/* $Date: 2002/02/27 16:05:15 $													   */
 | 
			
		||||
/* $Date: 2002/02/28 19:02:32 $													   */
 | 
			
		||||
/* $Author: agibert $															   */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
/* This file is part of LibNode                                                    */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is free software; you can redistribute it and/or modify              */
 | 
			
		||||
/*    it under the terms of the  GNU Lesser General Public Licence as published by */
 | 
			
		||||
/*    the Free Software Foundation; either version 2.1 of the License, or          */
 | 
			
		||||
/*    (at your option) any later version.                                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    LibNode is distributed in the hope that it will be useful,                   */
 | 
			
		||||
/*    but WITHOUT ANY WARRANTY; without even the implied warranty of               */
 | 
			
		||||
/*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                */
 | 
			
		||||
/*    GNU Lesser General Public License for more details.                          */
 | 
			
		||||
/*                                                                                 */
 | 
			
		||||
/*    You should have received a copy of the GNU LesserGeneral Public License      */
 | 
			
		||||
/*    along with Foobar; if not, write to the Free Software                        */
 | 
			
		||||
/*    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    */
 | 
			
		||||
/*---------------------------------------------------------------------------------*/
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user