ciderpress/mdc/mdc.h
Andy McFadden d21ba553ab Added new logging macros
Visual Studio figured out variadic macros around 2005, so we can
finally replace the explicit-arg-count debug log macros.

Also, fixed some include guards.

Also, bumped version to 4.0.0d1.
2014-11-17 18:07:07 -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 2
#define kAppMinorVersion 2
#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_)