#include "camtypes.h"#include "camconfig.h"#include "GDrawIntf.h"#include "XaDrwOld.h"#include "GVersion.h"#include "gradtbl.h"#include "grndrgn.h"#include "camprofile.h"Go to the source code of this file.
Functions | |
| LPBYTE | GDraw_Alloc (UINT32 Size) |
| void | GDraw_Free (LPBYTE ptr) |
|
|
Definition at line 203 of file GDrawIntf.cpp. 00204 { 00205 LPBYTE Result = (LPBYTE)CCMalloc(Size); 00206 00207 #ifdef _DEBUG 00208 if (Result==NULL) 00209 TRACEALL( _T("GDraw failed to get %ld bytes\n"), Size); 00210 #endif 00211 00212 return Result; 00213 }
|
|
|
Definition at line 215 of file GDrawIntf.cpp. 00216 { 00217 CCFree(ptr); 00218 }
|
1.4.4