function HookProc(nCode, wParam, lParam: Integer): Integer; stdcall;
begin
  if wParam=WM_LBUTTONDBLCLK then
  messagebox(0,PWideChar('wParam: '+IntToStr(wParam)),'ok',mb_ok);
  Result := CallNextHookEx(hhk, nCode, wParam, lParam);
end;hhk:= SetWindowsHookEx(WH_MOUSE, HookProc, hInstance, 0);请问如何取得鼠标双击的是哪个文件,如何取得双击的文件名,(只hook双击到的是文件)