diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /vendor/cfitsio/drvrgsiftp.h | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vendor/cfitsio/drvrgsiftp.h')
-rw-r--r-- | vendor/cfitsio/drvrgsiftp.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/cfitsio/drvrgsiftp.h b/vendor/cfitsio/drvrgsiftp.h new file mode 100644 index 00000000..bd0ec0d4 --- /dev/null +++ b/vendor/cfitsio/drvrgsiftp.h @@ -0,0 +1,21 @@ +#ifndef _GSIFTP_H +#define _GSIFTP_H + +int gsiftp_init(void); +int gsiftp_setoptions(int options); +int gsiftp_getoptions(int *options); +int gsiftp_getversion(int *version); +int gsiftp_shutdown(void); +int gsiftp_checkfile(char *urltype, char *infile, char *outfile); +int gsiftp_open(char *filename, int rwmode, int *driverhandle); +int gsiftp_create(char *filename, int *driverhandle); +int gsiftp_truncate(int driverhandle, LONGLONG filesize); +int gsiftp_size(int driverhandle, LONGLONG *filesize); +int gsiftp_close(int driverhandle); +int gsiftp_remove(char *filename); +int gsiftp_flush(int driverhandle); +int gsiftp_seek(int driverhandle, LONGLONG offset); +int gsiftp_read (int driverhandle, void *buffer, long nbytes); +int gsiftp_write(int driverhandle, void *buffer, long nbytes); + +#endif |