8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 10:43:03 +01:00
firebird-mirror/src/jrd/ext_proto.h

60 lines
1.8 KiB
C++

/*
* PROGRAM: JRD Access Method
* MODULE: ext_proto.h
* DESCRIPTION: Prototype header file for ext.cpp & extvms.cpp
*
* 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 JRD_EXT_PROTO_H
#define JRD_EXT_PROTO_H
namespace Jrd {
class ExternalFile;
class jrd_tra;
class RecordSource;
class jrd_rel;
class OptimizerBlk;
class jrd_nod;
struct record_param;
struct bid;
}
void EXT_close(Jrd::RecordSource*);
void EXT_erase(Jrd::record_param*, Jrd::jrd_tra*);
Jrd::ExternalFile* EXT_file(Jrd::jrd_rel*, const TEXT*, Jrd::bid*);
void EXT_fini(Jrd::jrd_rel*);
bool EXT_get(Jrd::RecordSource*);
void EXT_modify(Jrd::record_param*, Jrd::record_param*, Jrd::jrd_tra*);
#ifdef VMS
int EXT_open(Jrd::RecordSource*);
#else
void EXT_open(Jrd::RecordSource*);
#endif
Jrd::RecordSource* EXT_optimize(Jrd::OptimizerBlk*, SSHORT, Jrd::jrd_nod**);
void EXT_ready(Jrd::jrd_rel*);
void EXT_store(Jrd::record_param*, Jrd::jrd_tra*);
void EXT_trans_commit(Jrd::jrd_tra*);
void EXT_trans_prepare(Jrd::jrd_tra*);
void EXT_trans_rollback(Jrd::jrd_tra*);
void EXT_trans_start(Jrd::jrd_tra*);
#endif // JRD_EXT_PROTO_H