qse/ase/awk/extio.h

52 lines
1.2 KiB
C
Raw Normal View History

2006-06-28 14:19:01 +00:00
/*
2006-10-24 04:10:12 +00:00
* $Id: extio.h,v 1.15 2006-10-24 04:10:12 bacon Exp $
2006-06-28 14:19:01 +00:00
*/
2006-10-24 04:10:12 +00:00
#ifndef _ASE_AWK_EXTIO_H_
#define _ASE_AWK_EXTIO_H_
2006-06-21 11:45:26 +00:00
2006-10-24 04:10:12 +00:00
#ifndef _ASE_AWK_AWK_H_
#error Never include this file directly. Include <ase/awk/awk.h> instead
2006-06-21 11:45:26 +00:00
#endif
#ifdef __cplusplus
extern "C"
#endif
2006-10-24 04:10:12 +00:00
int ase_awk_readextio (
ase_awk_run_t* run, int in_type,
const ase_char_t* name, ase_awk_str_t* buf);
2006-06-22 14:15:02 +00:00
2006-10-24 04:10:12 +00:00
int ase_awk_writeextio_val (
ase_awk_run_t* run, int out_type,
const ase_char_t* name, ase_awk_val_t* v);
2006-06-22 14:15:02 +00:00
2006-10-24 04:10:12 +00:00
int ase_awk_writeextio_str (
ase_awk_run_t* run, int out_type,
const ase_char_t* name, ase_char_t* str, ase_size_t len);
2006-08-03 09:54:16 +00:00
2006-10-24 04:10:12 +00:00
int ase_awk_flushextio (
ase_awk_run_t* run, int out_type, const ase_char_t* name);
2006-08-22 15:11:13 +00:00
2006-10-24 04:10:12 +00:00
int ase_awk_nextextio_read (
ase_awk_run_t* run, int in_type, const ase_char_t* name);
2006-07-28 10:34:22 +00:00
/* TODO:
2006-10-24 04:10:12 +00:00
int ase_awk_nextextio_write (
ase_awk_run_t* run, int out_type, const ase_char_t* name);
2006-07-28 10:34:22 +00:00
*/
2006-10-24 04:10:12 +00:00
int ase_awk_closeextio_read (
ase_awk_run_t* run, int in_type, const ase_char_t* name);
int ase_awk_closeextio_write (
ase_awk_run_t* run, int out_type, const ase_char_t* name);
int ase_awk_closeextio (ase_awk_run_t* run, const ase_char_t* name);
2006-06-21 11:45:26 +00:00
2006-10-24 04:10:12 +00:00
void ase_awk_clearextio (ase_awk_run_t* run);
2006-06-21 15:37:51 +00:00
2006-06-21 11:45:26 +00:00
#ifdef __cplusplus
}
#endif
#endif