diff options
author | John Ankarström <john@ankarstrom.se> | 2022-05-30 18:10:54 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-05-30 18:10:54 +0200 |
commit | 4f83cf6a5337379327e3eeda765e067d4f13ed4b (patch) | |
tree | e6f138999d3765ff00f8c2b1e23e38ac0605e153 /c/resource.h | |
parent | 6fbb54d91b78cd0f89196ea091ad786469396692 (diff) | |
download | EpisodeBrowser-4f83cf6a5337379327e3eeda765e067d4f13ed4b.tar.gz |
Split up Watch into Watch Locally and Watch Online.
Diffstat (limited to 'c/resource.h')
-rw-r--r-- | c/resource.h | 65 |
1 files changed, 33 insertions, 32 deletions
diff --git a/c/resource.h b/c/resource.h index 6d4c090..0d626b8 100644 --- a/c/resource.h +++ b/c/resource.h @@ -1,37 +1,38 @@ #ifndef RESOURCE_H #define RESOURCE_H -#define ID_STATUS 11 -#define IDR_MENU 101 -#define IDR_POPUPMENU 102 -#define IDD_ABOUT 201 -#define IDC_ABOUTTEXT 301 -#define IDC_EPISODELISTVIEW 302 -#define IDC_DATALISTVIEW 303 -#define IDM_FILE_EXIT 401 -#define IDM_FILE_REFRESH 402 -#define IDM_FILE_RESET 403 -#define IDM_FILE_FETCH 404 -#define IDM_FILE_SCREENWRITERS 405 -#define IDM_FILE_ABOUT 411 -#define IDM_VIEW_WATCHED 421 -#define IDM_VIEW_TV_ORIGINAL 422 -#define IDM_VIEW_OTHERS 423 -#define IDM_WATCH 501 -#define IDM_TOGGLE 502 -#define IDM_FORGET 503 -#define IDM_LOOKUP 504 -#define IDM_WIKI 505 -#define IDM_RATE10 525 -#define IDM_RATE9 526 -#define IDM_RATE8 527 -#define IDM_RATE7 528 -#define IDM_RATE6 529 -#define IDM_RATE5 530 -#define IDM_RATE4 531 -#define IDM_RATE3 532 -#define IDM_RATE2 533 -#define IDM_RATE1 534 -#define IDM_RATE0 535 +#define ID_STATUS 11 +#define IDR_MENU 101 +#define IDR_POPUPMENU 102 +#define IDD_ABOUT 201 +#define IDC_ABOUTTEXT 301 +#define IDC_EPISODELISTVIEW 302 +#define IDC_DATALISTVIEW 303 +#define IDM_FILE_EXIT 401 +#define IDM_FILE_REFRESH 402 +#define IDM_FILE_RESET 403 +#define IDM_FILE_FETCH_DATA 404 +#define IDM_FILE_FETCH_SCREENWRITERS 405 +#define IDM_FILE_ABOUT 411 +#define IDM_VIEW_WATCHED 421 +#define IDM_VIEW_TV_ORIGINAL 422 +#define IDM_VIEW_OTHERS 423 +#define IDM_WATCH_LOCALLY 501 +#define IDM_WATCH_ONLINE 502 +#define IDM_TOGGLE 503 +#define IDM_FORGET 504 +#define IDM_LOOKUP 505 +#define IDM_WIKI 506 +#define IDM_RATE10 525 +#define IDM_RATE9 526 +#define IDM_RATE8 527 +#define IDM_RATE7 528 +#define IDM_RATE6 529 +#define IDM_RATE5 530 +#define IDM_RATE4 531 +#define IDM_RATE3 532 +#define IDM_RATE2 533 +#define IDM_RATE1 534 +#define IDM_RATE0 535 #endif |