Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
413 B

  1. //
  2. // BrowseDir.h
  3. //
  4. #ifndef __BROWSEDIR_H__
  5. #define __BROWSEDIR_H__
  6. BOOL BrowseForDirectory(
  7. HWND hwndParent,
  8. LPCTSTR pszInitialDir,
  9. LPTSTR pszBuf,
  10. int cchBuf,
  11. LPCTSTR pszDialogTitle,
  12. BOOL bRemoveTrailingBackslash );
  13. BOOL BrowseForFile(
  14. HWND hwndParent,
  15. LPCTSTR pszInitialDir,
  16. LPTSTR pszBuf,
  17. int cchBuf);
  18. #endif // !__BROWSEDIR_H__