Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/propsheet.c:
- LPNMHDR lpnmhdr;
- switch (uMessage)
- {
- case WM_NOTIFY:
lpnmhdr = (NMHDR *)lParam;
switch (lpnmhdr->code)
{
case PSN_QUERYINITIALFOCUS:
{
if (!query_initial_focus)
{
SetWindowLongPtrA(hdlg, DWLP_MSGRESULT, (LONG_PTR)GetDlgItem(hdlg, IDC_PS_EDIT2));
query_initial_focus = 1;
return 1;
}else
A coding style nitpick. Please move "else" on a newline and add curly braces around "query_initial_focus = 0;", even if it's just one line here because there are curly braces in the previous branch.