mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-06 16:21:11 +00:00
Imported libSDF into VOID tree
This commit is contained in:
parent
c6dd08bd7d
commit
2d09cb68df
55 changed files with 12667 additions and 0 deletions
28
external/libsdf/include/libsdf/SDFwrite.h
vendored
Normal file
28
external/libsdf/include/libsdf/SDFwrite.h
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef _SDFWriteDOTh
|
||||
#define _SDFWRiteDOTh
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
void SDFwrite(const char *filename, int gnobj, int nobj, const void *btab,
|
||||
int bsize, const char *bodydesc,
|
||||
/* const char *name, SDF_type_enum type, <type> val */ ...);
|
||||
void SDFwrite64(const char *filename, int64_t gnobj, int64_t nobj, const void *btab,
|
||||
int bsize, const char *bodydesc,
|
||||
/* const char *name, SDF_type_enum type, <type> val */ ...);
|
||||
void SDFappend64(const char *filename, int64_t gnobj, int64_t nobj, const void *btab,
|
||||
int bsize, const char *bodydesc,
|
||||
/* const char *name, SDF_type_enum type, <type> val */ ...);
|
||||
|
||||
/* A trivial special case, just don't write any body data */
|
||||
void SDFwritehdr(const char *filename, const char *bodydesc,
|
||||
/* const char *name, SDF_type_enum type, <type> val */ ...);
|
||||
|
||||
void SDFunsetwroteheader(void);
|
||||
void SDFsetwroteheader(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue