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
|
|
|
|
2015-11-08 04:11:47 +01:00
|
|
|
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
|
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;
|
|
|
|
int watch_fd;
|
|
|
|
}
|
|
|
|
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
|
2011-05-27 20:46:56 +02:00
|
|
|
extern GB_DESC NATIVE_StreamLines[];
|
2007-12-30 17:41:49 +01:00
|
|
|
extern GB_DESC NATIVE_Stream[];
|
|
|
|
extern GB_DESC NATIVE_File[];
|
|
|
|
extern GB_DESC NATIVE_Stat[];
|
2011-08-22 01:50:51 +02:00
|
|
|
extern GB_DESC NATIVE_StatPerm[];
|
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)
|
|
|
|
#endif
|
|
|
|
|
2008-08-14 21:42:27 +02:00
|
|
|
#define CSTREAM_stream(_cstream) (&((CSTREAM *)(void *)(_cstream))->stream)
|
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
|