source: svn/trunk/newcon3bcm2_21bu/BSEAV/lib/bcmplayer/utils/win32/bcmkernel.h

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 409 bytes
Line 
1/* This is my naughty little bcmkernel.h.
2It's the minimum needs to compile createindex and printindex
3for win32 without having to include the hardwareinterface, etc.
4*/
5
6#ifndef BCMKERNEL_H__
7#define BCMKERNEL_H__
8
9#include <stdlib.h>
10#include <stdio.h>
11#include <string.h>
12
13#define bcmKNIfree(mem) free(mem)
14#define bcmKNImalloc(size) malloc(size)
15#define bcmKNIprintf printf
16#define DBGMSG printf
17
18#endif
19
Note: See TracBrowser for help on using the repository browser.