8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 20:03:03 +01:00
firebird-mirror/src/remote/remot_proto.h

45 lines
1.6 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: JRD Remote Interface/Server
* MODULE: remot_proto.h
* DESCRIPTION: Prototpe header file for remote.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 REMOTE_REMOT_PROTO_H
#define REMOTE_REMOT_PROTO_H
2001-05-23 15:26:42 +02:00
struct blk;
void REMOTE_cleanup_transaction (struct rtr *);
ULONG REMOTE_compute_batch_size (rem_port*, USHORT, P_OP, const rem_fmt*);
void REMOTE_get_timeout_params (rem_port*, const UCHAR*, USHORT);
struct rrq* REMOTE_find_request (struct rrq *, USHORT);
void REMOTE_free_packet (rem_port*, struct packet *);
struct rem_str* REMOTE_make_string (const SCHAR*);
void REMOTE_release_messages (struct message *);
void REMOTE_release_request (struct rrq *);
void REMOTE_reset_request (struct rrq *, struct message *);
void REMOTE_reset_statement (struct rsr *);
void REMOTE_save_status_strings (ISC_STATUS *);
OBJCT REMOTE_set_object (rem_port*, blk*, OBJCT);
2006-03-03 17:20:42 +01:00
bool_t REMOTE_getbytes (XDR*, SCHAR*, u_int);
2001-05-23 15:26:42 +02:00
#endif // REMOTE_REMOT_PROTO_H