summaryrefslogtreecommitdiff
path: root/src/include/cctki_WarnLevel.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-20 21:38:29 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-20 21:38:29 +0000
commit75cf8623bc47439ed7dad0ad9fed659cc50a0fbd (patch)
tree2d2641b2f09365843ac0ed08595b9a298da4d324 /src/include/cctki_WarnLevel.h
parent3e7fb8430d91c8af28ab557af69f848e240d90d8 (diff)
Added missing prototypes for CCTKi_ routines.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2130 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctki_WarnLevel.h')
-rw-r--r--src/include/cctki_WarnLevel.h39
1 files changed, 28 insertions, 11 deletions
diff --git a/src/include/cctki_WarnLevel.h b/src/include/cctki_WarnLevel.h
index b4786cd5..d1002be9 100644
--- a/src/include/cctki_WarnLevel.h
+++ b/src/include/cctki_WarnLevel.h
@@ -2,24 +2,41 @@
@header cctki_WarnLevel.h
@date Wed Feb 17 00:53:55 1999
@author Tom Goodale
- @desc
- Header for the internal warning functions.
- @enddesc
+ @desc
+ Header for the internal warning functions.
+ @enddesc
+ @version $Id$
@@*/
#ifndef _CCTKI_WARNLEVEL_H_
#define _CCTKI_WARNLEVEL_H_
-#ifdef __cplusplus
-extern "C" {
+#ifdef __cplusplus
+extern "C"
+{
#endif
-int CCTKi_SetWarnLevel(int level);
-void CCTKi_FinaliseParamWarn(void);
-int CCTKi_SetErrorLevel(int level);
-void CCTKi_NotYetImplemented(const char *message);
-
-#ifdef __cplusplus
+int CCTKi_SetWarnLevel (int level);
+int CCTKi_SetParameterLevel (int level);
+int CCTKi_SetErrorLevel (int level);
+void CCTKi_FinaliseParamWarn (void);
+void CCTKi_NotYetImplemented (const char *message);
+void CCTKi_ExpectError (int in,
+ int err,
+ int warnonerr,
+ int line,
+ const char *file,
+ const char *thorn,
+ const char *message);
+void CCTKi_ExpectOK (int in,
+ int ok,
+ int warnonerr,
+ int line,
+ const char *file,
+ const char *thorn,
+ const char *message);
+
+#ifdef __cplusplus
}
#endif