summaryrefslogtreecommitdiff
path: root/unsorted/StaticParserGlue.c
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-01-15 12:14:05 +0000
committerAsh Wolf <ninji@wuffs.org>2023-01-15 12:14:05 +0000
commit35d488e972a9dd75ce3867c000405f128b79c615 (patch)
treee3319a23d9aa0d4725f88a99fdd5131488a334a9 /unsorted/StaticParserGlue.c
parent8078e7f897aaae9b492b22475060052d68b9c547 (diff)
downloadMWCC-35d488e972a9dd75ce3867c000405f128b79c615.tar.gz
MWCC-35d488e972a9dd75ce3867c000405f128b79c615.zip
reorganise things a bit to align further with the actual names/structure
Diffstat (limited to 'unsorted/StaticParserGlue.c')
-rw-r--r--unsorted/StaticParserGlue.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/unsorted/StaticParserGlue.c b/unsorted/StaticParserGlue.c
deleted file mode 100644
index 7a44487..0000000
--- a/unsorted/StaticParserGlue.c
+++ /dev/null
@@ -1,29 +0,0 @@
-#include "parser.h"
-#include "cmdline.h"
-
-static BasePluginCallbacks cb = {
- parser_main,
- CWParser_GetDropInFlags,
- CWParser_GetDisplayName,
- CWParser_GetDropInName,
- CWParser_GetPanelList,
- NULL,
- NULL,
- CWParser_GetVersionInfo,
- NULL
-};
-
-static ParserPluginCallbacks pr_cb = {
- Parser_SupportsPlugin,
- Parser_SupportsPanels
-};
-
-int RegisterStaticParserPlugins(void) {
- return RegisterStaticParserPlugin(&cb, &pr_cb);
-}
-
-#include "ParserErrors.r"
-
-int RegisterStaticParserResources(void) {
- return RegisterResource("Parser Strings", 12010, STR12010);
-}