2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2015-11-08 04:11:47 +01:00
|
|
|
gbx_c_file.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2018-02-12 02:53:46 +01:00
|
|
|
(c) 2000-2017 Benoît Minisini <g4mba5@gmail.com>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2015-11-08 04:11:47 +01:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2015-11-08 04:11:47 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2015-11-08 04:11:47 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GBX_C_FILE_H
|
|
|
|
#define __GBX_C_FILE_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
|
|
|
|
|
|
|
#include "gbx_value.h"
|
|
|
|
#include "gbx_stream.h"
|
|
|
|
#include "gbx_object.h"
|
|
|
|
#include "gb_file.h"
|
|
|
|
|
|
|
|
typedef
|
2015-11-08 04:11:47 +01:00
|
|
|
struct {
|
|
|
|
OBJECT ob;
|
|
|
|
STREAM stream;
|
|
|
|
GB_VARIANT_VALUE tag;
|
|
|
|
}
|
|
|
|
CSTREAM;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
2015-11-08 04:11:47 +01:00
|
|
|
struct {
|
|
|
|
CSTREAM ob;
|
|
|
|
}
|
|
|
|
CFILE;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
typedef
|
2015-11-08 04:11:47 +01:00
|
|
|
struct {
|
|
|
|
OBJECT ob;
|
|
|
|
FILE_STAT info;
|
|
|
|
char *path;
|
|
|
|
}
|
|
|
|
CSTAT;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#ifndef __GBX_C_FILE_C
|
2016-04-10 15:10:25 +02:00
|
|
|
extern GB_DESC StreamLinesDesc[];
|
|
|
|
extern GB_DESC StreamTermDesc[];
|
|
|
|
extern GB_DESC StreamDesc[];
|
|
|
|
extern GB_DESC FileDesc[];
|
|
|
|
extern GB_DESC StatDesc[];
|
|
|
|
extern GB_DESC StatPermDesc[];
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
extern CFILE *CFILE_in;
|
|
|
|
extern CFILE *CFILE_out;
|
|
|
|
extern CFILE *CFILE_err;
|
|
|
|
#else
|
|
|
|
#define THIS ((CFILE *)_object)
|
|
|
|
#define THIS_STREAM ((CSTREAM *)_object)
|
|
|
|
#define THIS_STAT ((CSTAT *)_object)
|
2019-12-21 17:03:42 +01:00
|
|
|
#define THE_STREAM CSTREAM_TO_STREAM(THIS_STREAM)
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|
|
|
|
|
2019-12-21 17:03:42 +01:00
|
|
|
#define CSTREAM_TO_STREAM(_cstream) (&((CSTREAM *)(void *)(_cstream))->stream)
|
|
|
|
#define CSTREAM_FROM_STREAM(_stream) ((CSTREAM *)((char *)(_stream) - sizeof(OBJECT)))
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
CFILE *CFILE_create(STREAM *stream, int mode);
|
|
|
|
void CFILE_init(void);
|
2008-01-27 15:00:04 +01:00
|
|
|
void CFILE_exit(void);
|
2008-01-17 22:39:26 +01:00
|
|
|
void CFILE_init_watch(void);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#endif
|