mirror of https://git.wuffs.org/MWCC
30 lines
638 B
C
30 lines
638 B
C
#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);
|
|
}
|