Sound.cpp
上传用户:hygd004
上传日期:2022-02-04
资源大小:1841k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Sound.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Sound.h"
  5. #include "SoundDlg.h"
  6. #include "DirectSound.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSoundApp
  14. BEGIN_MESSAGE_MAP(CSoundApp, CWinApp)
  15. //{{AFX_MSG_MAP(CSoundApp)
  16. //}}AFX_MSG
  17. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSoundApp construction
  21. CSoundApp::CSoundApp()
  22. {
  23. }
  24. /////////////////////////////////////////////////////////////////////////////
  25. // The one and only CSoundApp object
  26. CSoundApp theApp;
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CSoundApp initialization
  29. BOOL CSoundApp::InitInstance()
  30. {
  31. // Standard initialization
  32. #ifdef _AFXDLL
  33. Enable3dControls(); // Call this when using MFC in a shared DLL
  34. #else
  35. Enable3dControlsStatic(); // Call this when linking to MFC statically
  36. #endif
  37. CSoundDlg dlg;
  38. m_pMainWnd = &dlg;
  39. int nResponse = dlg.DoModal();
  40. if (nResponse == IDOK)
  41. {
  42. }
  43. else if (nResponse == IDCANCEL)
  44. {
  45. }
  46. // Since the dialog has been closed, return FALSE so that we exit the
  47. //  application, rather than start the application's message pump.
  48. return FALSE;
  49. }