blob: 011f067eda6033acfc579a1e8250f3a5c4662aec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DATALISTVIEW_H
#define DATALISTVIEW_H
#include "listview.h"
struct DataListView : public ListView
{
DataListView(void);
void ShowEpisode(int);
};
#define DLVSIKEY 0
#define DLVSIVALUE 1
#endif
|