summaryrefslogtreecommitdiff
path: root/command_line/CmdLine/Src/Clients/ClientGlue.c
blob: 6bc050848e090994d61b13098b47a31fa6cdc8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "cmdline.h"

int RegisterResource(const char *name, SInt16 rsrcid, const char **list) {
    Handle h;

    if (list == 0) {
        h = GetResource('STR#', rsrcid);
        if (h == 0) {
            CLFatalError("Resource ('STR#',%d) '%s' not found in executable\n", rsrcid, name);
            return 0;
        }
        ReleaseResource(h);
        return 1;
    } else {
        return Res_AddResource(name, rsrcid, list);
    }
}

int RegisterStaticPlugin(const BasePluginCallbacks *callbacks) {
    return Plugins_Add(Plugin_New(callbacks, 0, 0));
}

int RegisterStaticCompilerLinkerPlugin(const BasePluginCallbacks *callbacks, const CompilerLinkerPluginCallbacks *cl_callbacks) {
    return Plugins_Add(Plugin_New(callbacks, cl_callbacks, 0));
}

int RegisterStaticParserPlugin(const BasePluginCallbacks *callbacks, const ParserPluginCallbacks *pr_callbacks) {
    return Plugins_Add(Plugin_New(callbacks, 0, pr_callbacks));
}

void SetBuildTarget(OSType cpu, OSType os) {
    clState.cpu = cpu;
    clState.os = os;
}

void SetParserType(OSType plang) {
    clState.parserstyle = plang;
}

void SetPluginType(OSType lang, OSType type) {
    clState.language = lang;
    clState.plugintype = type;
}

int CmdLine_Initialize(int argc, char **argv, const char *builddate, const char *buildtime) {
    strncpy(cmdline_build_date, builddate, sizeof(cmdline_build_date));
    strncpy(cmdline_build_time, buildtime, sizeof(cmdline_build_time));
    return Main_Initialize(argc, argv);
}

int CmdLine_Driver() {
    return Main_Driver();
}

int CmdLine_Terminate(int exitcode) {
    return Main_Terminate(exitcode);
}