source: trunk/include/stats.h@ 7626

Last change on this file since 7626 was 7626, checked in by sandervl, 24 years ago

* empty log message *

File size: 511 bytes
Line 
1#ifndef _STATISTICS_H__
2#define _STATISTICS_H__
3
4//Get memory statistics from odincrt
5void _LNK_CONV getcrtstat(unsigned long *pnrcalls_malloc,
6 unsigned long *pnrcalls_free,
7 unsigned long *ptotalmemalloc);
8
9#ifdef DEBUG
10void STATS_GetDCEx(HWND hwnd, HDC hdc, HRGN hrgn, ULONG flags);
11void STATS_ReleaseDC(HWND hwnd, HDC hdc);
12void STATS_DumpStats();
13#else
14#define STATS_GetDCEx(a, b, c, d)
15#define STATS_ReleaseDC(a,b)
16#define STATS_DumpStats()
17#endif
18
19#endif
Note: See TracBrowser for help on using the repository browser.