OpenMapDialog.cpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. FinalSun/FinalAlert 2 Mission Editor
  3. Copyright (C) 1999-2024 Electronic Arts, Inc.
  4. Authored by Matthias Wagner
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. */
  16. // OpenMapDialog.cpp: Implementierungsdatei
  17. //
  18. #include "stdafx.h"
  19. #include "TiberianSun Mission Editor.h"
  20. #include "OpenMapDialog.h"
  21. #ifdef _DEBUG
  22. #define new DEBUG_NEW
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26. /////////////////////////////////////////////////////////////////////////////
  27. // COpenMapDialog
  28. IMPLEMENT_DYNAMIC(COpenMapDialog, CFileDialog)
  29. COpenMapDialog::COpenMapDialog(BOOL bOpenFileDialog, LPCTSTR lpszDefExt, LPCTSTR lpszFileName,
  30. DWORD dwFlags, LPCTSTR lpszFilter, CWnd* pParentWnd) :
  31. CFileDialog(bOpenFileDialog, lpszDefExt, lpszFileName, dwFlags, lpszFilter, pParentWnd)
  32. {
  33. }
  34. BEGIN_MESSAGE_MAP(COpenMapDialog, CFileDialog)
  35. //{{AFX_MSG_MAP(COpenMapDialog)
  36. // HINWEIS - Der Klassen-Assistent fügt hier Zuordnungsmakros ein und entfernt diese.
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()