khanat-opennel-code/code/nel/tools/sound/source_sounds_builder/file_dialog.h
Guillaume Dupuy 6f1197d633 Allow target to work with sheetName and a quiet option
HG : Enter commit message.  Lines beginning with 'HG:' are removed.
2016-11-28 00:54:33 +01:00

20 lines
405 B
C++

/*
* Workaround from the MFC CFileDialog Multi Select bug
* Thanks to Jens Bohlmann (bohly@ki.comcity.de)
*/
#include "afxdlgs.h"
#define FILENAME_BUFFERSIZE 64000
class CMultiFileDialog : public CFileDialog
{
public:
CMultiFileDialog(BOOL bOpenFileDialog, LPCTSTR lpszDefExt, LPCTSTR lpszFileName,
DWORD dwFlags, LPCTSTR lpszFilter, CWnd* pParentWnd);
private:
CString m_strFileName;
};