blob: 7dd04475a1eb8345f2fd3056edb4a896cebc2d39 (
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(HWND);
void ShowEpisode(int);
};
#define DLVSIKEY 0
#define DLVSIVALUE 1
#endif
|