summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/tools/imgtool/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/tools/imgtool/main.h')
-rw-r--r--src/mess/tools/imgtool/main.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mess/tools/imgtool/main.h b/src/mess/tools/imgtool/main.h
deleted file mode 100644
index d4089686437..00000000000
--- a/src/mess/tools/imgtool/main.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Nathan Woods
-#include "imgtool.h"
-
-struct command
-{
- const char *name;
- int (*cmdproc)(const struct command *c, int argc, char *argv[]);
- const char *usage;
- int minargs;
- int maxargs;
- int lastargrepeats;
-};
-
-void reporterror(imgtoolerr_t err, const struct command *c, const char *format, const char *imagename,
- const char *filename, const char *newname, option_resolution *opts);
-
-#ifdef MAME_DEBUG
-int cmd_testsuite(struct command *c, int argc, char *argv[]);
-#endif