52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
|
|
/* ArduinoFloppyReaderWin
|
||
|
|
*
|
||
|
|
* Copyright (C) 2017-2021 Robert Smith (@RobSmithDev)
|
||
|
|
* https://amiga.robsmithdev.co.uk
|
||
|
|
*
|
||
|
|
* This program is free software; you can redistribute it and/or
|
||
|
|
* modify it under the terms of the GNU Library General Public
|
||
|
|
* License as published by the Free Software Foundation; either
|
||
|
|
* version 3 of the License, or (at your option) any later version.
|
||
|
|
*
|
||
|
|
* This library 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
|
||
|
|
* Library General Public License for more details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU Library General Public
|
||
|
|
* License along with this program; if not see http://www.gnu.org/licenses/
|
||
|
|
*/
|
||
|
|
|
||
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
// Simple Windows application using the libraries used in the console app //
|
||
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef __AFXWIN_H__
|
||
|
|
#error "include 'stdafx.h' before including this file for PCH"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "resource.h" // main symbols
|
||
|
|
|
||
|
|
|
||
|
|
// CArduinoFloppyReaderWinApp:
|
||
|
|
// See ArduinoFloppyReaderWin.cpp for the implementation of this class
|
||
|
|
//
|
||
|
|
|
||
|
|
class CArduinoFloppyReaderWinApp : public CWinApp
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CArduinoFloppyReaderWinApp();
|
||
|
|
|
||
|
|
// Overrides
|
||
|
|
public:
|
||
|
|
virtual BOOL InitInstance();
|
||
|
|
|
||
|
|
// Implementation
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
};
|
||
|
|
|
||
|
|
extern CArduinoFloppyReaderWinApp theApp;
|