| 8 | |
| 9 | |
| 10 | typedef struct ALLOC_INFO |
| 11 | { |
| 12 | unsigned long address; |
| 13 | unsigned long size; |
| 14 | char file[64]; |
| 15 | unsigned long line; |
| 16 | struct ALLOC_INFO *Next; |
| 17 | } ALLOC_INFO; |
| 18 | ALLOC_INFO *AllocList; |
| 19 | |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected