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.

38 lines
768 B

  1. //---------------------------------------------------------------------------
  2. //---------------------------------------------------------------------------
  3. #include "pch.h"
  4. #include "recon.h"
  5. #include "resource.h"
  6. BOOL CALLBACK Recon_DlgProc(
  7. HWND hwndDlg,
  8. UINT uMsg,
  9. WPARAM wParam,
  10. LPARAM lParam)
  11. {
  12. switch (uMsg )
  13. {
  14. case WM_INITDIALOG:
  15. SetWindowLong(hwndDlg, DWL_USER, lParam);
  16. DEBUG_PRINT(("Reconnect: Init dialog\n"));
  17. break;
  18. case WM_DESTROY:
  19. DEBUG_PRINT(("Reconnect: DestroyDialog\n"));
  20. break;
  21. case WM_COMMAND:
  22. switch (LOWORD(wParam))
  23. {
  24. }
  25. return FALSE;
  26. break;
  27. default:
  28. return FALSE;
  29. }
  30. return TRUE;
  31. }