2020-09-30 16:53:55 +02:00

11 lines
272 B
C

#ifndef FILEBROWSER_H
#define FILEBROWSER_H
#include <windows.h>
// Display browse dialog box, and return dir string. String does
// not need to be freed, will be overwritten by subsequent calls.
PTSTR BrowseForFolder(HWND hwnd, PTSTR szInitialPath);
#endif