aboutsummaryrefslogtreecommitdiff
path: root/c/defs.h
blob: ad1001a1faf31c45678ea1a1590732815ea10679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef DEFS_H
#define DEFS_H

#include <windows.h>
#include <commctrl.h>

/* common.c */
TCHAR *TSZFromSZ(const char *, int);
int Watched(int);

/* main.c */
void UpdateLayout(HWND);

/* listview.c */
HWND LvCreate(HWND, HMENU);

/* episodelistview.c */
HWND ElvCreate(HWND);
LRESULT ElvHandleNotify(LPARAM);
int ElvItemEpisode(int);
void ElvSelectRecent(void);
void ElvUpdate(void);
void ElvUpdateName(int, int);

/* datalistview.c */
HWND DlvCreate(HWND);
void DlvShowEpisode(int);

#endif