// iTunesAlarm.h : main header file for the iSnooze application // // Copyright (c) 2004, Steven Scott (progoth@gmail.com) // // This file is part of iSnooze. // // iSnooze is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // iSnooze is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with iSnooze; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols // CiTunesAlarmApp: // See iTunesAlarm.cpp for the implementation of this class // class CiTunesAlarmApp : public CWinApp { public: CiTunesAlarmApp(); ~CiTunesAlarmApp() { CoUninitialize(); } CArray m_aryFrames; public: // Overrides public: virtual BOOL InitInstance(); // Implementation protected: HMENU m_hMDIMenu; HACCEL m_hMDIAccel; public: afx_msg void OnAppAbout(); afx_msg void OnFileNewFrame(); DECLARE_MESSAGE_MAP() }; extern CiTunesAlarmApp theApp;