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

Last change on this file since 76 was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • 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.