Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include "pch.h"
#include "recon.h"
#include "resource.h"
BOOL CALLBACK Recon_DlgProc( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg ) { case WM_INITDIALOG: SetWindowLong(hwndDlg, DWL_USER, lParam); DEBUG_PRINT(("Reconnect: Init dialog\n")); break;
case WM_DESTROY: DEBUG_PRINT(("Reconnect: DestroyDialog\n")); break;
case WM_COMMAND: switch (LOWORD(wParam)) { } return FALSE; break;
default: return FALSE; } return TRUE; }
|