r5sdk/r5dev/tier1/utlmemory.h

18 lines
356 B
C
Raw Normal View History

//============ Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
// A growable memory class.
//===========================================================================//
#pragma once
struct __declspec(align(8)) CUtlMemory
{
void* m_pMemory;
int64_t m_nAllocationCount;
int64_t m_nGrowSize;
};