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.

98 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name :
  4. athendlg.cpp
  5. Abstract:
  6. CAthenicationDialog dialog implementation.
  7. Author:
  8. Michael Cheuk (mcheuk)
  9. Project:
  10. Link Checker
  11. Revision History:
  12. --*/
  13. #include "stdafx.h"
  14. #include "linkchk.h"
  15. #include "athendlg.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. CAthenicationDialog::CAthenicationDialog(
  22. CWnd* pParent /*=NULL*/
  23. ):
  24. /*++
  25. Routine Description:
  26. Constructor.
  27. Arguments:
  28. pParent - Pointer to parent CWnd
  29. Return Value:
  30. N/A
  31. --*/
  32. CDialog(CAthenicationDialog::IDD, pParent)
  33. {
  34. //{{AFX_DATA_INIT(CAthenicationDialog)
  35. // NOTE: the ClassWizard will add member initialization here
  36. //}}AFX_DATA_INIT
  37. } // CAthenicationDialog::CAthenicationDialog
  38. void
  39. CAthenicationDialog::DoDataExchange(
  40. CDataExchange* pDX
  41. )
  42. /*++
  43. Routine Description:
  44. Called by MFC to change/retrieve dialog data
  45. Arguments:
  46. pDX -
  47. Return Value:
  48. N/A
  49. --*/
  50. {
  51. CDialog::DoDataExchange(pDX);
  52. //{{AFX_DATA_MAP(CAthenicationDialog)
  53. // NOTE: the ClassWizard will add DDX and DDV calls here
  54. //}}AFX_DATA_MAP
  55. } // CAthenicationDialog::DoDataExchange
  56. BEGIN_MESSAGE_MAP(CAthenicationDialog, CDialog)
  57. //{{AFX_MSG_MAP(CAthenicationDialog)
  58. // NOTE: the ClassWizard will add message map macros here
  59. //}}AFX_MSG_MAP
  60. ON_BN_CLICKED(IDC_ATHENICATION_OK, CDialog::OnOK)
  61. ON_BN_CLICKED(IDC_ATHENICATION_CANCEL, CDialog::OnCancel)
  62. END_MESSAGE_MAP()