diff options
author | Determinant <[email protected]> | 2015-06-22 19:01:29 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-06-22 19:01:29 +0800 |
commit | 2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 (patch) | |
tree | 382f97575bd2df9ee6abb1662b11b279fc22d72b /io/chunk_file.h | |
parent | 196e9b48a3541caccdffc5743001cced70667091 (diff) |
major change: use luarocks to manage project
Diffstat (limited to 'io/chunk_file.h')
-rw-r--r-- | io/chunk_file.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/io/chunk_file.h b/io/chunk_file.h deleted file mode 100644 index 9bae59d..0000000 --- a/io/chunk_file.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef NERV_LAYER_FILE_H -#define NERV_LAYER_FILE_H - -extern const char *nerv_chunk_file_tname; -extern const char *nerv_chunk_file_handle_tname; -extern const char *nerv_chunk_info_tname; -extern const char *nerv_chunk_data_tname; - -typedef struct ChunkFileHandle { - FILE *fp; - int closed; -} ChunkFileHandle; - -typedef struct ChunkInfo { - off_t offset, length; -} ChunkInfo; - -typedef struct ChunkData { - FILE *fp; - char *data; -} ChunkData; - -#endif |