2023-01-10 11:05:21 +00:00
|
|
|
#ifndef COMPILER_CPREC_H
|
|
|
|
#define COMPILER_CPREC_H
|
|
|
|
|
|
|
|
#include "compiler/common.h"
|
|
|
|
|
2023-01-11 22:29:53 +00:00
|
|
|
extern char *precomp_target_str;
|
|
|
|
|
|
|
|
extern void SetupPrecompiler(Boolean isPrecompiling);
|
2023-01-10 11:05:21 +00:00
|
|
|
extern void CleanupPrecompiler(void);
|
|
|
|
extern void PreComp_StaticData(Object *obj, const void *data, OLinkList *links, SInt32 size);
|
|
|
|
extern void PrecompilerWrite(void);
|
|
|
|
extern void PrecompilerRead(short refnum, void *buffer);
|
|
|
|
|
|
|
|
#endif
|