Update of /cvsroot/gqclient/gq/src
In directory usw-pr-cvs1:/tmp/cvs-serv19747
Modified Files:
errorchain.h
Log Message:
* Changes related to changes in errorchain.c
Index: errorchain.h
===================================================================
RCS file: /cvsroot/gqclient/gq/src/errorchain.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** errorchain.h 21 Jun 2002 00:30:29 -0000 1.4
--- errorchain.h 27 Jun 2002 08:21:20 -0000 1.5
***************
*** 30,34 ****
int error_new_context(char *title);
! void error_push(int context, char *msg);
struct errchain *error_chain_by_context(int q);
void error_flush(int context);
--- 30,45 ----
int error_new_context(char *title);
! void error_push_production(int context, char *msg);
!
! #ifdef ERROR_SHOW_LINE
!
! void error_push_debug(int context, char *msg, char *file, int line);
! # define error_push(c, m) error_push_debug((c), (m), __FILE__, __LINE__)
!
! #else
! # define error_push(c, m) error_push_production((c), (m))
! #endif
!
!
struct errchain *error_chain_by_context(int q);
void error_flush(int context);
|