mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
16 lines
327 B
C#
16 lines
327 B
C#
namespace MicrosoftZuneLibrary
|
|
{
|
|
public class ZuneLibraryGenreList : ZuneQueryList
|
|
{
|
|
public unsafe ZuneLibraryGenreList(IDatabaseQueryResults* pResults)
|
|
: base(pResults, "ZuneLibraryGenreList")
|
|
{
|
|
}
|
|
|
|
public string GetGenre(int index)
|
|
{
|
|
return (string)GetFieldValue((uint)index, typeof(string), 399u);
|
|
}
|
|
}
|
|
}
|