mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
22 lines
479 B
C#
22 lines
479 B
C#
#if OPENZUNE
|
|
|
|
using Microsoft.Iris;
|
|
|
|
namespace Microsoft.Zune.Library
|
|
{
|
|
public static class StrixLibraryDataProvider
|
|
{
|
|
public static void Register()
|
|
{
|
|
Application.RegisterDataProvider("Library", new DataProviderQueryFactory(ConstructQuery));
|
|
}
|
|
|
|
private static DataProviderQuery ConstructQuery(object queryTypeCookie)
|
|
{
|
|
return new StrixLibraryDataProviderQuery(queryTypeCookie);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|