blob: daa102091abc2313f138552b731e3f0c94013fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef COMPILER_CCOMPILER_H
#define COMPILER_CCOMPILER_H
#include "compiler/common.h"
extern Boolean systemHandles;
extern Boolean crippled;
extern SInt32 license_cookie;
extern CompilerLinkerParamBlk cparams;
extern CWPLUGIN_ENTRY(MWC_main)(CWPluginContext context);
extern void PrintProgressFunction(const char *str);
#endif
|