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

Last change on this file since 74 was 74, checked in by phkim, 10 years ago
  1. phkim
  2. zasc
  3. 변경 내용
    • CT_ChMapUpdatePMTAC3AudioDescriptor 메모리 leak 버그 수정
  • 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.