20 lines
303 B
C++
20 lines
303 B
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#include <AzCore/base.h>
|
|
|
|
namespace Audio
|
|
{
|
|
namespace Platform
|
|
{
|
|
void* InitializeSecondaryMemoryPool(size_t&)
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
}
|