summaryrefslogtreecommitdiff
path: root/src/include/cctk_WarnLevel.h
blob: 3da90c2191d86694b2871716609746404d47e62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 /*@@
   @header    cctk_WarnLevel.h
   @date      Wed Feb 17 00:53:55 1999
   @author    Tom Goodale
   @desc 
   Header for the warning functions.
   @enddesc 
   @version $Header$
 @@*/

#ifndef _CCTK_WARNLEVEL_H_
#define _CCTK_WARNLEVEL_H_

#ifdef __cplusplus 
extern "C" 
{
#endif

void CCTK_Warn(int level, 
               int line, 
               const char *file, 
               const char *thorn, 
               const char *message);
void CCTK_VWarn(int level, 
                int line, 
                const char *file, 
                const char *thorn, 
                const char *format, ...);
void CCTK_ParamWarn(const char *thorn, const char *message);
void CCTK_Info(const char *thorn, const char *message);

void CCTKi_NotYetImplemented(const char *message);
 
#ifdef __cplusplus 
}
#endif

#endif