Cosmos/source/Playgrounds/Ben/os/kernel/Cosmos.IPC/MM/QueryResultMessage.cs
2009-08-07 02:28:26 +00:00

16 lines
273 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Kernel.MM
{
public class QueryResponse : MMMessage
{
public UIntPtr page { get; set; }
uint ownerPid { get; set; }
}
}