AVDConf.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "AVDConf.h"
  3. #include "AVDConfDlg.h"
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #undef THIS_FILE
  7. static char THIS_FILE[] = __FILE__;
  8. #endif
  9. BEGIN_MESSAGE_MAP(CAVDConfApp, CWinApp)
  10. //{{AFX_MSG_MAP(CAVDConfApp)
  11. // NOTE - the ClassWizard will add and remove mapping macros here.
  12. //    DO NOT EDIT what you see in these blocks of generated code!
  13. //}}AFX_MSG
  14. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  15. END_MESSAGE_MAP()
  16. CAVDConfApp::CAVDConfApp()
  17. {
  18. }
  19. CAVDConfApp theApp;
  20. BOOL CAVDConfApp::InitInstance()
  21. {
  22. AfxEnableControlContainer();
  23. #ifdef _AFXDLL
  24. Enable3dControls();
  25. #else
  26. Enable3dControlsStatic();
  27. #endif
  28. CAVDConfDlg dlg;
  29. m_pMainWnd = &dlg;
  30. dlg.DoModal();
  31. return FALSE;
  32. }