2025-11-28 00:35:46 +09:00

46 lines
985 B
C++

//-----------------------------------------------------------------------------
// Microsoft OLE DB RowsetViewer
// Copyright (C) 1994 - 1999 By Microsoft Corporation.
//
// @doc
//
// @module CWINAPP.H
//
//-----------------------------------------------------------------------------------
#ifndef _CWINAPP_H_
#define _CWINAPP_H_
/////////////////////////////////////////////////////////////////////////////
// Includes
//
//////////////////////////////////////////////////////////////////////////////
#include "CDialogLite.h" //CAppLite
#include "Spy.h" //CMallocSpy
//////////////////////////////////////////////////////////////////////////
// CWinApp
//
//////////////////////////////////////////////////////////////////////////
class CWinApp : public CAppLite
{
public:
CWinApp();
virtual ~CWinApp();
//Overrides
virtual BOOL InitInstance();
virtual int ExitInstance();
//Helpers
//protected:
//Data
CMallocSpy* m_pCMallocSpy;
};
#endif //_CWINAPP_H_