ciderpress/mdc/mdc.h
Andy McFadden b2cd857031 File selection dialog update, part 1
This adds a replacement for the SelectFilesDialog class.  It has
been updated to use Explorer-style dialogs, which are a bit nicer
than the old-style dialogs.  Hopefully this will eliminate some of the
brain damage, like the disappearing Accept button.

This change only updates MDC.  A second change will update the main
app and remove the old code.

Also, updated the MDC version to 3.0.0, and changed the web site
linked in the Help menu from faddensoft.com to a2ciderpress.com.
2014-12-02 17:39:56 -08:00

36 lines
862 B
C++

/*
* CiderPress
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
* See the file LICENSE for distribution terms.
*/
#if !defined(AFX_MDC_H__15BEB7EF_BB49_4E23_BDD1_7F7B0220F3DB__INCLUDED_)
#define AFX_MDC_H__15BEB7EF_BB49_4E23_BDD1_7F7B0220F3DB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "resource.h"
/* MDC version numbers */
#define kAppMajorVersion 3
#define kAppMinorVersion 0
#define kAppBugVersion 0
/*
* Windows application object.
*/
class MyApp : public CWinApp {
public:
MyApp(LPCTSTR lpszAppName = NULL);
virtual ~MyApp(void);
// Overridden functions
virtual BOOL InitInstance(void);
//virtual BOOL OnIdle(LONG lCount);
};
extern MyApp gMyApp;
#endif // !defined(AFX_MDC_H__15BEB7EF_BB49_4E23_BDD1_7F7B0220F3DB__INCLUDED_)