diff options
author | John Ankarström <john@ankarstrom.se> | 2022-02-15 22:59:58 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-02-15 23:00:20 +0100 |
commit | 4fafc8b49e3f08a87119ef62a54056efba7b6b92 (patch) | |
tree | 98a1cee0e7e2949924fa45940eacfd4eedbf940a /c/resource.h | |
parent | 5bbd959c3c78a7293ad00c2a022b800ec28f4b8d (diff) | |
download | EpisodeBrowser-4fafc8b49e3f08a87119ef62a54056efba7b6b92.tar.gz |
Finish Win32 re-implementation.
There are still things to be improved upon,
but this commit marks feature parity with
the XPCE version.
Diffstat (limited to 'c/resource.h')
-rw-r--r-- | c/resource.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/c/resource.h b/c/resource.h index 16af73e..5893ad4 100644 --- a/c/resource.h +++ b/c/resource.h @@ -2,12 +2,17 @@ #define RESOURCE_H #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 ID_FILE_EXIT 4001 -#define ID_FILE_REFRESH 4002 -#define ID_FILE_ABOUT 4011 +#define ID_FILE_EXIT 401 +#define ID_FILE_REFRESH 402 +#define ID_FILE_ABOUT 411 +#define ID_WATCH 421 +#define ID_TOGGLE 422 +#define ID_FORGET 423 +#define ID_LOOKUP 424 #endif |