FrontISTR  5.7.1
Large-scale structural analysis program with finit element method
hecmw_msg.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 
6 #ifndef HECMW_MSG_INCLUDED
7 #define HECMW_MSG_INCLUDED
8 
9 #include "hecmw_msgno.h"
10 
11 struct hecmw_msgent {
12  int msgno;
13  char *msgno_str;
14  char *msg;
15 };
16 
17 extern struct hecmw_msgent hecmw_msg_table[];
18 
19 extern char *HECMW_strmsg(int msgno);
20 
21 extern int HECMW_is_syserr(int msgno);
22 
23 #endif
int HECMW_is_syserr(int msgno)
Definition: hecmw_msg.c:46
char * HECMW_strmsg(int msgno)
Definition: hecmw_msg.c:31
struct hecmw_msgent hecmw_msg_table[]
char * msg
Definition: hecmw_msg.h:14
char * msgno_str
Definition: hecmw_msg.h:13