/* This is my naughty little bcmkernel.h. It's the minimum needs to compile createindex and printindex for win32 without having to include the hardwareinterface, etc. */ #ifndef BCMKERNEL_H__ #define BCMKERNEL_H__ #include #include #include #define bcmKNIfree(mem) free(mem) #define bcmKNImalloc(size) malloc(size) #define bcmKNIprintf printf #define DBGMSG printf #endif