8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 03:23:03 +01:00

Still seems to work after changes.

:-)
This commit is contained in:
robocop 2003-08-25 12:09:16 +00:00
parent a985f1ab09
commit dbe2772bba
2 changed files with 19 additions and 9 deletions

View File

@ -200,8 +200,11 @@ void ERRQ_msg_format(
void ERRQ_msg_partial(
USHORT number,
TEXT * arg1,
TEXT * arg2, TEXT * arg3, TEXT * arg4, TEXT * arg5)
const TEXT * arg1,
const TEXT * arg2,
const TEXT * arg3,
const TEXT * arg4,
const TEXT * arg5)
{
/**************************************
*
@ -222,8 +225,11 @@ void ERRQ_msg_partial(
void ERRQ_msg_put(
USHORT number,
TEXT * arg1,
TEXT * arg2, TEXT * arg3, TEXT * arg4, TEXT * arg5)
const TEXT * arg1,
const TEXT * arg2,
const TEXT * arg3,
const TEXT * arg4,
const TEXT * arg5)
{
/**************************************
*
@ -233,6 +239,7 @@ void ERRQ_msg_put(
*
* Functional description
* Retrieve a message from the error file, format it, and print it
* It's same outcome than ERRQ_msg_partial but with a newline at the end.
*
**************************************/

View File

@ -21,8 +21,8 @@
* Contributor(s): ______________________________________.
*/
#ifndef _QLI_ERR_PROTO_H_
#define _QLI_ERR_PROTO_H_
#ifndef QLI_ERR_PROTO_H
#define QLI_ERR_PROTO_H
extern void ERRQ_bugcheck (USHORT);
extern void ERRQ_database_error (struct dbb *, ISC_STATUS *);
@ -31,10 +31,13 @@ extern void ERRQ_error_format (USHORT, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *);
extern void ERRQ_exit (int);
extern void ERRQ_msg_format (USHORT, USHORT, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *);
extern int ERRQ_msg_get (USHORT, TEXT *);
extern void ERRQ_msg_partial (USHORT, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *);
extern void ERRQ_msg_put (USHORT, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *);
extern void ERRQ_msg_partial (USHORT, const TEXT *, const TEXT *, const TEXT *,
const TEXT *, const TEXT *);
extern void ERRQ_msg_put (USHORT, const TEXT *, const TEXT *, const TEXT *,
const TEXT *, const TEXT *);
extern void ERRQ_pending (void);
extern void ERRQ_print_error (USHORT, TEXT *, TEXT *, TEXT *, TEXT *, TEXT *);
extern void ERRQ_syntax (USHORT);
#endif /* _QLI_ERR_PROTO_H_ */
#endif /* QLI_ERR_PROTO_H */