aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/PS3/PS3Extras/HeapInspector/Server/HeapInfo.h
blob: 885c8da55939ba33f309ab73b8b5c91d26c3a22f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _HEAPINSPECTORSERVER_HEAPINFO_H_
#define _HEAPINSPECTORSERVER_HEAPINFO_H_

#include "HeapInspectorServerTypes.h"
#include <string>

BEGIN_NAMESPACE(HeapInspectorServer)

struct Range
{
	uint32 m_Min;
	uint32 m_Max;
};

struct HeapInfo
{
	std::string m_Description;
	Range m_Range;
};

END_NAMESPACE(HeapInspectorServer)

#endif // _HEAPINSPECTORSERVER_HEAPINFO_H_