18 lines
343 B
C++
18 lines
343 B
C++
#ifndef _FRAMEDIALOG_HPP_
|
|
#define _FRAMEDIALOG_HPP_
|
|
#include <mdiwin/dwindow.hpp>
|
|
|
|
class FrameDialog : public DWindow
|
|
{
|
|
public:
|
|
FrameDialog(HWND hParent);
|
|
~FrameDialog();
|
|
WORD performFrameDialog(int &numFrames);
|
|
private:
|
|
int DlgProc(UINT message,WPARAM wParam,LPARAM lParam);
|
|
HWND mhParent;
|
|
HINSTANCE mhInstance;
|
|
int mFrames;
|
|
};
|
|
#endif
|