summaryrefslogtreecommitdiff
path: root/csrc/mkf/mkf.h
diff options
context:
space:
mode:
Diffstat (limited to 'csrc/mkf/mkf.h')
-rw-r--r--csrc/mkf/mkf.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/csrc/mkf/mkf.h b/csrc/mkf/mkf.h
index ef1fa38..f42d709 100644
--- a/csrc/mkf/mkf.h
+++ b/csrc/mkf/mkf.h
@@ -1,4 +1,5 @@
#include <stdint.h>
+#include "graph_struct.h"
int load_mkf(const char *fn);
void unload_mkf(int mkf_idx);
@@ -11,12 +12,5 @@ struct spr_smp
char sig[4]; /* "SPR" or "SMP" */
int32_t nchunk;
int32_t start_offset;
- int32_t t3, t4; /* unused? */
- struct {
- /* in the file, it's the chunk size,
- * after read_mkf(), it becomes the start address */
- int32_t chunk_sz;
- int32_t v2, v3; /* unused? */
- } chunk_tab[0];
+ struct graph_st chunk_tab[0];
};
-