diff options
author | John Ankarström <john@ankarstrom.se> | 2022-03-02 21:48:41 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-03-02 21:48:41 +0100 |
commit | 85cf754ff86c053c4f7a34b57b1528c0cf655b35 (patch) | |
tree | 63456b2ba31b501ca1e0cf8683ff969868760a07 /c/defs.h | |
parent | 56d4f25db9cedb5b45a731ce2db004fb03ccc001 (diff) | |
download | EpisodeBrowser-85cf754ff86c053c4f7a34b57b1528c0cf655b35.tar.gz |
Open episode on Enter.
This case cannot be handled by NM_RETURN, as the Return key is handled
by IsDialogMessage (in the message loop in main), which sends a
WM_GETDLGCODE message to the active control.
Diffstat (limited to 'c/defs.h')
-rw-r--r-- | c/defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -16,6 +16,7 @@ void LvSetTheme(HWND, int); /* episodelistview.c */ HWND ElvCreate(); +void ElvEnter(LPLVITEM); LRESULT ElvHandleNotify(LPARAM); void ElvRedraw(void); void ElvSetTop(int); |