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.

86 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. lviodlg.cpp
  5. Abstract:
  6. License violation dialog implementation.
  7. Author:
  8. Don Ryan (donryan) 02-Feb-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #include "stdafx.h"
  14. #include "llsmgr.h"
  15. #include "lviodlg.h"
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20. BEGIN_MESSAGE_MAP(CLicensingViolationDialog, CDialog)
  21. //{{AFX_MSG_MAP(CLicensingViolationDialog)
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. CLicensingViolationDialog::CLicensingViolationDialog(CWnd* pParent /*=NULL*/)
  25. : CDialog(CLicensingViolationDialog::IDD, pParent)
  26. /*++
  27. Routine Description:
  28. Constructor for dialog.
  29. Arguments:
  30. pParent - owner window.
  31. Return Values:
  32. None.
  33. --*/
  34. {
  35. //{{AFX_DATA_INIT(CLicensingViolationDialog)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CLicensingViolationDialog::DoDataExchange(CDataExchange* pDX)
  39. /*++
  40. Routine Description:
  41. Called by framework to exchange dialog data.
  42. Arguments:
  43. pDX - data exchange object.
  44. Return Values:
  45. None.
  46. --*/
  47. {
  48. CDialog::DoDataExchange(pDX);
  49. //{{AFX_DATA_MAP(CLicensingViolationDialog)
  50. //}}AFX_DATA_MAP
  51. }