[Plib-cvs] plib/src/pw pw.h,1.4,1.5 pwMacOSX.cxx,1.5,1.6 pwWindows.cxx,1.6,1.7
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2004-03-24 01:41:12
|
Update of /cvsroot/plib/plib/src/pw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28160/plib/src/pw Modified Files: pw.h pwMacOSX.cxx pwWindows.cxx Log Message: Added copyright messages. Index: pw.h =================================================================== RCS file: /cvsroot/plib/plib/src/pw/pw.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- pw.h 24 Feb 2004 02:06:03 -0000 1.4 +++ pw.h 24 Mar 2004 01:30:41 -0000 1.5 @@ -1,3 +1,27 @@ +/* + PLIB - A Suite of Portable Game Libraries + Copyright (C) 1998,2002 Steve Baker + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library 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 + + For further information visit http://plib.sourceforge.net + + $Id$ +*/ + + #ifndef _PW_H_ #define _PW_H_ 1 Index: pwMacOSX.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/pw/pwMacOSX.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- pwMacOSX.cxx 24 Mar 2004 01:16:50 -0000 1.5 +++ pwMacOSX.cxx 24 Mar 2004 01:30:41 -0000 1.6 @@ -1,18 +1,45 @@ +/* + PLIB - A Suite of Portable Game Libraries + Copyright (C) 1998,2002 Steve Baker + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library 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 + + For further information visit http://plib.sourceforge.net + + $Id$ +*/ /* * - with Mac OS 8.6 to 9.2: - * - must be linked with the following libraries: - * InterfaceLib, accessors.o, AppearanceLib and OpenGL (it contains agl) + * - must be linked with the following libraries: + * InterfaceLib, accessors.o, AppearanceLib and OpenGL (it contains agl) * - * - ACTIVE_SLEEPTIME must be defined to 0 for the fastest execution; + * - ACTIVE_SLEEPTIME must be defined to 0 for the fastest execution; * but it will not let other app to get events. * * - with Mac OS X: must be linked with the following frameworks: - * Carbon, AGL + * Carbon, AGL * */ +#include <stdlib.h> +#include <stdio.h> +#include "ul.h" +#include "pw.h" + #if defined(UL_MACINTOSH) || defined(UL_MAC_OSX) #ifdef UL_MAC_OSX @@ -33,12 +60,6 @@ # include <agl.h> #endif -#include <stdlib.h> -#include <stdio.h> -#include "ul.h" -#include "pw.h" - - /* Apple menu: */ #define mApple 128 #define iAbout 1 Index: pwWindows.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/pw/pwWindows.cxx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- pwWindows.cxx 28 Feb 2004 22:29:11 -0000 1.6 +++ pwWindows.cxx 24 Mar 2004 01:30:41 -0000 1.7 @@ -1,3 +1,26 @@ +/* + PLIB - A Suite of Portable Game Libraries + Copyright (C) 1998,2002 Steve Baker + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library 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 + + For further information visit http://plib.sourceforge.net + + $Id$ +*/ + #include "ul.h" |