mirror of https://git.wuffs.org/MWCC
13 lines
350 B
C
13 lines
350 B
C
|
#ifndef COMPILER_CPREC_H
|
||
|
#define COMPILER_CPREC_H
|
||
|
|
||
|
#include "compiler/common.h"
|
||
|
|
||
|
extern void SetupPrecompiler(void);
|
||
|
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
|