21 lines
390 B
C++
21 lines
390 B
C++
#ifndef _FILEDIALOG_H_
|
|
#define _FILEDIALOG_H_
|
|
|
|
#include "commdlg.h"
|
|
|
|
//file dialog
|
|
BOOL FileDialog(BOOL iOpen,LPCTSTR iExt,LPCTSTR iFile,LPCTSTR iTitle,DWORD iFlags,LPCTSTR iFilter,XString& oFileName);
|
|
|
|
#if defined(WIN32) || defined(VIRTOOLS_RUNTIME_VERSION)
|
|
//hourglass cursor
|
|
class WaitCursor
|
|
{
|
|
public:
|
|
WaitCursor();
|
|
~WaitCursor();
|
|
private:
|
|
HCURSOR m_PreviousCursor ;
|
|
};
|
|
#endif
|
|
|
|
#endif |