Update of /cvsroot/opengtoolkit/portIO/c_source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24818/c_source
Modified Files:
ogportio.c
Log Message:
Added LGPL license header
Index: ogportio.c
===================================================================
RCS file: /cvsroot/opengtoolkit/portIO/c_source/ogportio.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ogportio.c 3 Mar 2004 13:20:24 -0000 1.1
--- ogportio.c 5 Mar 2004 23:16:40 -0000 1.2
***************
*** 1,2 ****
--- 1,24 ----
+ /*
+ * Generic Port IO device driver implementation
+ *
+ * Copyright (C) 2004 Rolf Kalbermatter, r.k...@hc...
+ *
+ * Please visit http://www.OpenG.org to learn about the
+ * Open Source LabVIEW software movement.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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 Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
#include <ntddk.h>
#include <ogportio.h>
|