Lizenzheader und Headerguards

This commit is contained in:
Yamagi Burmeister 2010-10-22 08:45:31 +00:00
parent cb881567a0
commit 1d0bbf537c
3 changed files with 87 additions and 4 deletions

View file

@ -1,5 +1,31 @@
#ifndef __GL_LOCAL__
#define __GL_LOCAL__
/*
* Copyright (C) 1997-2001 Id Software, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* =======================================================================
*
* Local header for the refresher.
*
* =======================================================================
*/
#ifndef REF_LOCAL_H
#define REF_LOCAL_H
#include <stdio.h>
#include <ctype.h>

View file

@ -1,3 +1,32 @@
/*
* Copyright (C) 1997-2001 Id Software, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* =======================================================================
*
* Header for the model stuff.
*
* =======================================================================
*/
#ifndef REF_MODEL_H
#define REF_MODEL_H
#define SIDE_FRONT 0
#define SIDE_BACK 1
#define SIDE_ON 2
@ -201,3 +230,5 @@ void Hunk_Free ( void *base );
void Mod_FreeAll ( void );
void Mod_Free ( model_t *mod );
#endif

View file

@ -1,5 +1,31 @@
#ifndef __QGL_H__
#define __QGL_H__
/*
* Copyright (C) 1997-2001 Id Software, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* =======================================================================
*
* Quake GL prototypes
*
* =======================================================================
*/
#ifndef REF_QGL_H
#define REF_QGL_H
#include <GL/gl.h>