summaryrefslogtreecommitdiff
path: root/unsorted/StaticParserGlue.c
diff options
context:
space:
mode:
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);
-}