blob: dfd4907737cd55c53c4ad6764adeae9431214aba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #include "common.h"
INT_PTR CALLBACK CToxProto::AccountManagerProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
	return FALSE;
}
INT_PTR CToxProto::CreateAccMgrUI(WPARAM, LPARAM lParam)
{
	return (INT_PTR)CreateDialogParam(
		g_hInstance,
		MAKEINTRESOURCE(IDD_ACCMGR),
		(HWND)lParam,
		&CToxProto::AccountManagerProc,
		(LPARAM)this);
}
 |