00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _H_objcmp
00022 #define _H_objcmp
00023
00024 #ifndef _STDIO_INCLUDED_
00025 #include <stdio.h>
00026 #define _STDIO_INCLUDED_
00027 #endif
00028
00029 #ifndef _H_conscomp
00030 #include "conscomp.h"
00031 #endif
00032 #ifndef _H_object
00033 #include "object.h"
00034 #endif
00035
00036 #define OBJECT_COMPILER_DATA 36
00037
00038 struct objectCompilerData
00039 {
00040 #if CONSTRUCT_COMPILER && (! RUN_TIME)
00041 struct CodeGeneratorItem *ObjectCodeItem;
00042 #endif
00043 };
00044
00045 #define ObjectCompilerData(theEnv) ((struct objectCompilerData *) GetEnvironmentData(theEnv,OBJECT_COMPILER_DATA))
00046
00047 #ifdef LOCALE
00048 #undef LOCALE
00049 #endif
00050
00051 #ifdef _OBJCMP_SOURCE_
00052 #define LOCALE
00053 #else
00054 #define LOCALE extern
00055 #endif
00056
00057 LOCALE void SetupObjectsCompiler(void *);
00058 LOCALE void PrintClassReference(void *,FILE *,DEFCLASS *,int,int);
00059 LOCALE void DefclassCModuleReference(void *,FILE *,int,int,int);
00060
00061 #endif
00062