ciderpress/mdc/mdc.h
Andy McFadden 63b9996009 Normalize indentation and EOL
This updates all source files to use spaces instead of tabs for
indentation.  It also normalizes the end-of-line markers to be
Windows-style CRLF, and ensures that all files end with EOL.

No substantive changes were made; "diff -w" is empty.
2014-11-03 16:26:53 -08:00

44 lines
970 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"
/*
* Application object.
*/
#if defined(_DEBUG_LOG)
#define kDebugLog "C:\\mdclog.txt"
#endif
/* 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_)