mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
22 lines
472 B
C#
22 lines
472 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace MicrosoftZuneLibrary
|
|
{
|
|
internal class DeferredSetResultArgs
|
|
{
|
|
public int RequestGeneration;
|
|
|
|
public ZuneQueryList QueryList;
|
|
|
|
public bool RetainedList;
|
|
|
|
public DeferredSetResultArgs(int requestGeneration, ZuneQueryList queryList, [MarshalAs(UnmanagedType.U1)] bool retainedList)
|
|
{
|
|
RequestGeneration = requestGeneration;
|
|
QueryList = queryList;
|
|
RetainedList = retainedList;
|
|
base._002Ector();
|
|
}
|
|
}
|
|
}
|