Comment # 2
on bug 10935
from Xiaochuan Sun
I built with MSVC2010EE + QT5.4.0 successfully, but I still could not see
open dialogue by pressing File -> Open menu.
I used VC2010 to debug the wireshark.exe, I found the last opened directory
can be retrieved in win32_open_file() funciton, but the WM message passed to
hook function open_file_hook_proc are 48, 144, 2, 130 in sequence, neither of
them are corresponding to WM_INITDIALOG, WM_NOTIFY and WM_COMMAND which the
hook function can process.
MSVC2010EE should support WM_INITDIALOG because I can see open dialogue
before with the same 1.99.3 release. Really don't know what happened!
MSVC2013 should be used on WIN8 whereas my PC is WIN7, so I could not change
to MSVC2013.
MainWindow::openCaptureFile
>win32_open_file
>open_file_hook_proc(HWND of_hwnd, UINT msg, WPARAM w_param, LPARAM l_param)
{
switch(msg)
{
case WM_INITDIALOG:
case WM_NOTIFY:
case WM_COMMAND:
}
}
You are receiving this mail because:
- You are watching all bug changes.