aboutsummaryrefslogtreecommitdiff
path: root/c/defs.h
blob: 67f1d3e59d3104a9e3aefe1c64dd256b14d00411 (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
#ifndef DEFS_H
#define DEFS_H

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

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

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

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

/* episodelistview.c */
HWND ElvCreate(HWND);
LRESULT ElvHandleNotify(LPARAM);
void ElvUpdate(void);
void ElvUpdateName(NMLISTVIEW *);

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

#endif