2001-05-23 15:26:42 +02:00
|
|
|
/*
|
|
|
|
* PROGRAM: JRD Remote Interface/Server
|
|
|
|
* MODULE: remot_proto.h
|
2003-10-29 11:53:47 +01:00
|
|
|
* 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): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
2003-10-03 03:20:50 +02:00
|
|
|
#ifndef REMOTE_REMOT_PROTO_H
|
|
|
|
#define REMOTE_REMOT_PROTO_H
|
2001-05-23 15:26:42 +02:00
|
|
|
|
2004-03-18 06:56:06 +01:00
|
|
|
struct blk;
|
|
|
|
|
2003-10-03 03:20:50 +02:00
|
|
|
void REMOTE_cleanup_transaction (struct rtr *);
|
2004-02-24 06:34:44 +01:00
|
|
|
ULONG REMOTE_compute_batch_size (rem_port*, USHORT, P_OP, const rem_fmt*);
|
2004-01-28 08:50:41 +01:00
|
|
|
void REMOTE_get_timeout_params (rem_port*, const UCHAR*, USHORT);
|
2003-10-03 03:20:50 +02:00
|
|
|
struct rrq* REMOTE_find_request (struct rrq *, USHORT);
|
2004-01-28 08:50:41 +01:00
|
|
|
void REMOTE_free_packet (rem_port*, struct packet *);
|
2004-01-03 11:59:52 +01:00
|
|
|
struct rem_str* REMOTE_make_string (const SCHAR*);
|
2003-10-03 03:20:50 +02:00
|
|
|
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 *);
|
2004-03-18 06:56:06 +01:00
|
|
|
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
|
|
|
|
2003-10-03 03:20:50 +02:00
|
|
|
#endif // REMOTE_REMOT_PROTO_H
|
2004-01-03 11:59:52 +01:00
|
|
|
|