Removed all files using cvs remove since setup is quite old and hasn't been
[geda-gaf/whiteaudio.git] / geda / src / log.h
blob3d4409c8155fd80e51a962d48249843931cb45d3
1 /*******************************************************************************/
2 /* */
3 /* gEDA Suite Project Manager */
4 /* */
5 /* Copyright (C) 2002 Piotr Miarecki, sp9rve@eter.ariadna.pl */
6 /* */
7 /* This program is free software; you can redistribute it and/or */
8 /* modify it under the terms of the GNU General Public License */
9 /* as published by the Free Software Foundation version 2. */
10 /* */
11 /* This program is distributed in the hope that it will be useful, */
12 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14 /* GNU General Public License for more details. */
15 /* */
16 /* You should have received a copy of the GNU General Public License */
17 /* along with this program; if not, write to the Free Software */
18 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 /* */
20 /*******************************************************************************/
22 #ifndef __LOG_H_INCLUDED
23 #define __LOG_H_INCLUDED
27 /* types of log entries */
28 #define LOG_MESSAGE 1
29 #define LOG_WARNING 2
30 #define LOG_ERROR 3
31 #define LOG_FATAL 4
33 /* public functions */
34 void Log(int iType, char *szFileName, int iLine, char *szMessage);
38 #endif