Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. // MICDlg.h : header file
  2. //
  3.  
  4. #pragma once
  5.  
  6. #include "Mmsystem.h"
  7.  
  8.  
  9. // CMICDlg dialog
  10. class CMICDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMICDlg(CWnd* pParent = NULL); // standard constructor
  15.  
  16. // Dialog Data
  17. enum { IDD = IDD_MIC_DIALOG };
  18.  
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21.  
  22.  
  23. // Implementation
  24. protected:
  25. HICON m_hIcon;
  26.  
  27. // Generated message map functions
  28. virtual BOOL OnInitDialog();
  29. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  30. afx_msg void OnPaint();
  31. afx_msg HCURSOR OnQueryDragIcon();
  32. DECLARE_MESSAGE_MAP()
  33. public:
  34. afx_msg void OnBnClickedButton1();
  35. afx_msg void OnBnClickedButmicOutopen();
  36. afx_msg void OnBnClickedButmicOutclose();
  37. afx_msg void OnBnClickedButmicOutplay();
  38. afx_msg LRESULT OnOutDone(WPARAM wParam, LPARAM lParam);
  39. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement