blob: a83b5e9f4c69e54c51c9e9bbdd0fda44d0bc1f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "stdafx.h"
CDropboxDlgBase::CDropboxDlgBase(CDropbox *instance, int idDialog)
: CDlgBase(g_hInstance, idDialog), m_instance(instance)
{
}
void CDropboxDlgBase::CreateLink(CCtrlData& ctrl, const char *szSetting, BYTE type, DWORD iValue)
{
ctrl.CreateDbLink(MODULE, szSetting, type, iValue);
}
void CDropboxDlgBase::CreateLink(CCtrlData& ctrl, const char *szSetting, TCHAR *szValue)
{
ctrl.CreateDbLink(MODULE, szSetting, szValue);
}
|