00001 /* SCEI CONFIDENTIAL 00002 */ 00003 /* 00004 Copyright (C) 1997 by Sony Computer Entertainment Inc. 00005 All rights Reserved. 00006 00007 Ver 1.00 Jun 30, 1997 by N.Yoshioka 00008 */ 00009 extern void *my_calloc(DWORD num, int size, char *file, int line); 00010 00011 #define CALLOC(num, type) (type *)my_calloc(num, sizeof(type), \ 00012 __FILE__, __LINE__)