2007-03-27 17:47:10 +00:00
|
|
|
/*
|
|
|
|
* 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 */
|
2014-12-02 06:07:39 +00:00
|
|
|
#define kAppMajorVersion 3
|
|
|
|
#define kAppMinorVersion 0
|
2014-11-04 00:26:53 +00:00
|
|
|
#define kAppBugVersion 0
|
2007-03-27 17:47:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Windows application object.
|
|
|
|
*/
|
|
|
|
class MyApp : public CWinApp {
|
|
|
|
public:
|
2014-11-04 00:26:53 +00:00
|
|
|
MyApp(LPCTSTR lpszAppName = NULL);
|
|
|
|
virtual ~MyApp(void);
|
2007-03-27 17:47:10 +00:00
|
|
|
|
2014-11-04 00:26:53 +00:00
|
|
|
// Overridden functions
|
|
|
|
virtual BOOL InitInstance(void);
|
|
|
|
//virtual BOOL OnIdle(LONG lCount);
|
2007-03-27 17:47:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern MyApp gMyApp;
|
|
|
|
|
|
|
|
#endif // !defined(AFX_MDC_H__15BEB7EF_BB49_4E23_BDD1_7F7B0220F3DB__INCLUDED_)
|