17 lines
276 B
C
17 lines
276 B
C
//
|
|
// BrowseDir.h
|
|
//
|
|
|
|
#ifndef __BROWSEDIR_H__
|
|
#define __BROWSEDIR_H__
|
|
|
|
BOOL BrowseForDirectory(
|
|
HWND hwndParent,
|
|
LPCTSTR pszInitialDir,
|
|
LPTSTR pszBuf,
|
|
int cchBuf,
|
|
LPCTSTR pszDialogTitle,
|
|
BOOL bRemoveTrailingBackslash );
|
|
|
|
#endif // !__BROWSEDIR_H__
|