2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Backup and Restore program
|
|
|
|
* MODULE: burp_proto.h
|
|
|
|
* DESCRIPTION: Prototype header file for burp.c
|
|
|
|
*
|
|
|
|
* 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): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
2003-09-12 11:04:38 +02:00
|
|
|
#ifndef BURP_BURP_PROTO_H
|
|
|
|
#define BURP_BURP_PROTO_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-09-15 15:13:45 +02:00
|
|
|
#ifdef SUPERSERVER
|
|
|
|
extern int BURP_main(SVC service);
|
|
|
|
#endif
|
|
|
|
|
2003-09-14 03:08:18 +02:00
|
|
|
extern void BURP_abort(void);
|
|
|
|
extern void BURP_svc_error(USHORT, USHORT, const void *, USHORT, const void *,
|
2003-09-12 11:04:38 +02:00
|
|
|
USHORT, const void *, USHORT, const void *, USHORT, const void *);
|
2003-09-14 03:08:18 +02:00
|
|
|
extern void BURP_error(USHORT, const void*, const void*, const void*, const void*, const void*);
|
|
|
|
extern void BURP_print_status(ISC_STATUS *);
|
|
|
|
extern void BURP_error_redirect(ISC_STATUS *, USHORT, const void*, const void*);
|
|
|
|
extern void BURP_msg_partial(USHORT, const void*, const void*, const void*,
|
2003-09-12 11:04:38 +02:00
|
|
|
const void*, const void*);
|
2003-09-14 03:08:18 +02:00
|
|
|
extern void BURP_msg_put(USHORT, const void*, const void*, const void*,
|
2003-09-12 11:04:38 +02:00
|
|
|
const void*, const void*);
|
2003-09-14 03:08:18 +02:00
|
|
|
extern void BURP_msg_get(USHORT, TEXT*, const void*, const void*, const void*,
|
2003-09-12 11:04:38 +02:00
|
|
|
const void*, const void*);
|
2003-09-14 03:08:18 +02:00
|
|
|
extern void BURP_output_version(const TEXT *, TEXT *);
|
|
|
|
extern void BURP_print(USHORT, const void*, const void*, const void*, const void*, const void*);
|
|
|
|
extern void BURP_print_warning(ISC_STATUS*);
|
|
|
|
extern void BURP_verbose(USHORT, const void*, const void*, const void*, const void*, const void*);
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2003-09-12 11:04:38 +02:00
|
|
|
#endif /* BURP_BURP_PROTO_H */
|
2001-05-23 15:26:42 +02:00
|
|
|
|