2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: Dynamic SQL RUNTIME SUPPORT
|
|
|
|
* MODULE: errd_proto.h
|
2003-11-01 11:26:43 +01:00
|
|
|
* DESCRIPTION: Prototype Header file for errd.cpp
|
2001-05-23 15:26:42 +02:00
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Interbase Public
|
|
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy
|
|
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an
|
|
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
|
|
* or implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code was created by Inprise Corporation
|
|
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
|
|
* Copyright (C) Inprise Corporation.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
* Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DSQL_ERRD_PROTO_H
|
|
|
|
#define DSQL_ERRD_PROTO_H
|
|
|
|
|
|
|
|
#ifdef DEV_BUILD
|
2001-12-24 03:51:06 +01:00
|
|
|
void ERRD_assert_msg(const char*, const char*, ULONG);
|
2001-05-23 15:26:42 +02:00
|
|
|
#endif
|
|
|
|
|
2001-12-24 03:51:06 +01:00
|
|
|
void ERRD_bugcheck(const char*);
|
|
|
|
void ERRD_error(int, const char*);
|
2003-04-10 08:32:58 +02:00
|
|
|
void ERRD_post(ISC_STATUS, ...);
|
2003-09-12 03:41:03 +02:00
|
|
|
bool ERRD_post_warning(ISC_STATUS, ...);
|
2005-09-04 23:31:25 +02:00
|
|
|
void ERRD_punt(const ISC_STATUS* = 0);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-03-07 08:58:55 +01:00
|
|
|
#endif // DSQL_ERRD_PROTO_H
|
2003-11-01 11:26:43 +01:00
|
|
|
|