/* * 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 { struct bid; class ExternalFile; } void EXT_close(Jrd::RecordSource*); void EXT_erase(Jrd::record_param*, int*); 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*, int*); #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*, int*); 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