mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
25 lines
433 B
C#
25 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
namespace Cosmos.Kernel.MM
|
|
{
|
|
public class AllocationResponse : MMMessage
|
|
{
|
|
private UIntPtr address;
|
|
|
|
public UIntPtr Address
|
|
{
|
|
get { return address; }
|
|
|
|
}
|
|
|
|
|
|
public AllocationResponse(UIntPtr Address)
|
|
{
|
|
address = Address;
|
|
}
|
|
}
|
|
}
|