DyLP trunk
|
00001 #ifndef _DYLIB_ERRS_H 00002 #define _DYLIB_ERRS_H 00003 00004 /* 00005 This file is part of the support library for the Dylp LP distribution. 00006 00007 Copyright (C) 2005 -- 2007 Lou Hafer 00008 00009 School of Computing Science 00010 Simon Fraser University 00011 Burnaby, B.C., V5A 1S6, Canada 00012 lou@cs.sfu.ca 00013 00014 This code is licensed under the terms of the Eclipse Public License (EPL). 00015 */ 00016 00017 /* 00018 sccs: @(#)errs.h 2.3 03/18/04 00019 svn/cvs: $Id$ 00020 */ 00021 00022 #include "dylib_std.h" 00023 #ifdef _DYLIB_FORTRAN 00024 #include "dylib_fortran.h" 00025 #endif 00026 00027 void errinit(const char *emsgpath, const char *elogpath, bool errecho), 00028 errterm(void) ; 00029 00030 void errmsg(int errid, ... ), 00031 warn(int errid, ... ) ; 00032 00033 #ifdef _DYLIB_FORTRAN 00034 void errmsg_(integer *errid, char *ident, ... ) ; 00035 void warn_(integer *errid, char *ident, ... ) ; 00036 #endif 00037 00038 #endif /* _DYLIB_ERRS_H */