00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __ALSFOLDERBROWSER_H_ 00006 #define __ALSFOLDERBROWSER_H_ 00007 00008 #include <windows.h> 00009 #include <shlobj.h> 00010 00011 class AlsFolderBrowser 00012 { 00013 public: 00014 BOOL Create (LPCTSTR pszTitle, LPCTSTR pszPath, LPCTSTR pszRoot, HWND hWndParent); 00015 LPCTSTR GetPath (); 00016 AlsFolderBrowser(); 00017 virtual ~AlsFolderBrowser(); 00018 00019 protected: 00020 static INT CALLBACK _BrowserCallback (HWND hWnd, UINT uMsg, LPARAM lp, LPARAM lpData); 00021 TCHAR m_pszFullPath [MAX_PATH]; 00022 00023 }; 00024 00025 #endif
1.5.6