8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-31 12:43:02 +01:00
firebird-mirror/src/jrd/os/pio_proto.h

59 lines
1.8 KiB
C
Raw Normal View History

2001-05-23 15:26:42 +02:00
/*
* PROGRAM: JRD Access Method
* MODULE: pio_proto.h
* DESCRIPTION: Prototype header file for pio.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): ______________________________________.
*/
#ifndef JRD_PIO_PROTO_H
#define JRD_PIO_PROTO_H
2001-05-23 15:26:42 +02:00
#ifdef __cplusplus
extern "C" {
#endif
int PIO_add_file(struct dbb *, struct fil *, TEXT *, SLONG);
void PIO_close(struct fil *);
struct fil* PIO_create(struct dbb *, TEXT *, SSHORT, BOOLEAN);
int PIO_connection(TEXT *, USHORT *);
int PIO_expand(TEXT *, USHORT, TEXT *);
void PIO_flush(struct fil *);
void PIO_force_write(struct fil *, USHORT);
void PIO_header(struct dbb *, SCHAR *, int);
SLONG PIO_max_alloc(struct dbb *);
SLONG PIO_act_alloc(struct dbb *);
struct fil* PIO_open(struct dbb *, TEXT *, SSHORT, SSHORT,
2001-05-23 15:26:42 +02:00
struct blk *, TEXT *, USHORT);
int PIO_read(struct fil *, struct bdb *, struct pag *, ISC_STATUS *);
2001-05-23 15:26:42 +02:00
#ifdef SUPERSERVER_V2
int PIO_read_ahead(struct dbb *, SLONG, SCHAR *, SLONG, struct piob *,
2003-04-10 08:49:16 +02:00
ISC_STATUS *);
int PIO_status(struct piob *, ISC_STATUS *);
2001-05-23 15:26:42 +02:00
#endif
int PIO_unlink(TEXT *);
int PIO_write(struct fil *, struct bdb *, struct pag *, ISC_STATUS *);
2001-05-23 15:26:42 +02:00
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif // JRD_PIO_PROTO_H