blob: 27a86122f4636e9ffd8332797bf2540e8e8f38ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2014 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
#include "XMPCommon/XMPCommon_I.h"
#include "XMPCommon/Interfaces/IMemoryAllocator_I.h"
namespace XMP_COMPONENT_INT_NAMESPACE {
void InitializeXMPCommonFramework() {
IMemoryAllocator_I::SetMemoryAllocator( NULL );
}
void TerminateXMPCommonFramework() {
IMemoryAllocator_I::SetMemoryAllocator( NULL );
}
}
|