-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwmcreate.h
More file actions
67 lines (58 loc) · 1.32 KB
/
wmcreate.h
File metadata and controls
67 lines (58 loc) · 1.32 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <Windows.h>
#ifndef WMCREATE_H_
#define WMCREATE_H_
typedef struct {
TCHAR id[128];
TCHAR title[128];
TCHAR rating[4];
TCHAR releasedate[10];
TCHAR type[16];
} result;
typedef struct {
TCHAR id[256];
TCHAR number[3];
TCHAR title[256];
} episode;
typedef struct {
TCHAR link[512];
TCHAR quality[8];
} stream;
typedef struct {
TCHAR id[128];
TCHAR title[128];
TCHAR description[2048];
TCHAR imageurl[512];
TCHAR date[10];
TCHAR episodes[4];
TCHAR type[16];
TCHAR status[16];
TCHAR genres[5][32];
//false: sub | true: dub
BOOL isdub;
BOOL isempty;
} animeinfo;
//test struct
typedef struct trendinganimeinfo {
char id[128];
char title[128];
char imageurl[256];
} trendinganimeinfo;
void createUtils();
BOOL CALLBACK enumVisibleChildWindowsProc(HWND hwnd, LPARAM lparam);
void destroyVisibleChildWindows(HWND hwndparent);
int homeWindow(HWND hwnd);
int searchWindow(HWND hwnd);
int settingsWindow(HWND hwnd);
BOOL hideSearch();
BOOL showSearch();
int searchResults(HWND hwnd, wchar_t * query);
int infoWindow(HWND hwnd);
int episodeWindow(HWND hwnd);
BOOL showSettings();
BOOL hideSettings();
int settingsWindow(HWND hwnd);
int networkTab(HWND hwnd);
int providerTab(HWND hwnd);
int updateNotice();
int languageTab(HWND hwnd);
#endif