Fix LPITEMIDLIST type

This commit is contained in:
kaetemi 2019-05-01 08:03:05 +08:00
parent dc84e1fd2c
commit af029b056c

View file

@ -162,9 +162,9 @@ int CALLBACK expBrowseCallbackProc (HWND hwnd,UINT uMsg,LPARAM lp, LPARAM pData)
// \return true if not canceled // \return true if not canceled
bool CExportDlg::callChoosePathDlg(CString &dest) const bool CExportDlg::callChoosePathDlg(CString &dest) const
{ {
BROWSEINFO bi; BROWSEINFO bi;
TCHAR str[MAX_PATH]; TCHAR str[MAX_PATH];
ITEMIDLIST* pidl; LPITEMIDLIST pidl;
TCHAR sTemp[1024]; TCHAR sTemp[1024];
bi.hwndOwner = this->m_hWnd; bi.hwndOwner = this->m_hWnd;