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

Last change on this file since 22 was 22, checked in by phkim, 11 years ago
  1. phkim
  2. newcon3sk 를 kctv 로 브랜치 함
  • 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.