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.

32 lines
958 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // ProviderFormatInfo.h : interface of the CProviderFormatInfo class
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. // CProviderFormatInfo dialog
  9. class CProviderFormatInfo : public CDialog
  10. {
  11. DECLARE_DYNAMIC(CProviderFormatInfo)
  12. public:
  13. CProviderFormatInfo(CWnd* pParent, CTraceSession *pTraceSession); // standard constructor
  14. virtual ~CProviderFormatInfo();
  15. // Dialog Data
  16. enum { IDD = IDD_PROVIDER_FORMAT_INFORMATION_DIALOG };
  17. CTraceSession *m_pTraceSession;
  18. protected:
  19. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  20. DECLARE_MESSAGE_MAP()
  21. public:
  22. afx_msg void OnBnClickedTmfBrowseButton();
  23. afx_msg void OnBnClickedOk();
  24. };