mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 23:31:12 +00:00
Imported Healpix, cfitsio, cosmotool. Added cmake tool to build dependencies (cfitsio, hdf5, netcdf, boost, healpix, gsl, ..). Adjusted CMakeLists.txt
This commit is contained in:
parent
4bfb62f177
commit
51f6798f88
241 changed files with 243806 additions and 0 deletions
21
external/cfitsio/drvrgsiftp.h
vendored
Normal file
21
external/cfitsio/drvrgsiftp.h
vendored
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue