diff options
Diffstat (limited to 'include/m_chat_int.h')
-rw-r--r-- | include/m_chat_int.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index c2a29e3d00..34dd52cdb9 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -26,6 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_string.h>
#include <m_chat.h>
+#include <m_gui.h>
#include <m_utils.h>
#define OPTIONS_FONTCOUNT 20
@@ -412,4 +413,18 @@ extern int hLangpack; EXTERN_C MIR_APP_DLL(CHAT_MANAGER*) Chat_GetInterface(CHAT_MANAGER_INITDATA *pData = NULL, int = hLangpack);
+/////////////////////////////////////////////////////////////////////////////////////////
+
+class MIR_APP_EXPORT CSrmmBaseDialog : public CDlgBase
+{
+protected:
+ CSrmmBaseDialog(HINSTANCE hInst, int idDialog);
+
+protected:
+ virtual INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;
+
+protected:
+ CCtrlEdit *m_pLog, *m_pEntry;
+};
+
#endif // M_CHAT_INT_H__
|