1 |
26 |
unneback |
//####COPYRIGHTBEGIN####
|
2 |
|
|
//
|
3 |
|
|
// ----------------------------------------------------------------------------
|
4 |
|
|
// Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
|
5 |
|
|
//
|
6 |
|
|
// This program is part of the eCos host tools.
|
7 |
|
|
//
|
8 |
|
|
// This program is free software; you can redistribute it and/or modify it
|
9 |
|
|
// under the terms of the GNU General Public License as published by the Free
|
10 |
|
|
// Software Foundation; either version 2 of the License, or (at your option)
|
11 |
|
|
// any later version.
|
12 |
|
|
//
|
13 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
14 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
15 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
16 |
|
|
// more details.
|
17 |
|
|
//
|
18 |
|
|
// You should have received a copy of the GNU General Public License along with
|
19 |
|
|
// this program; if not, write to the Free Software Foundation, Inc.,
|
20 |
|
|
// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
21 |
|
|
//
|
22 |
|
|
// ----------------------------------------------------------------------------
|
23 |
|
|
//
|
24 |
|
|
//####COPYRIGHTEND####
|
25 |
|
|
// stdafx.h : include file for standard system include files,
|
26 |
|
|
// or project specific include files that are used frequently, but
|
27 |
|
|
// are changed infrequently
|
28 |
|
|
//
|
29 |
|
|
|
30 |
|
|
#if !defined(AFX_STDAFX_H__44CEA27C_11C4_11D3_A505_00A0C949ADAC__INCLUDED_)
|
31 |
|
|
#define AFX_STDAFX_H__44CEA27C_11C4_11D3_A505_00A0C949ADAC__INCLUDED_
|
32 |
|
|
|
33 |
|
|
#if _MSC_VER > 1000
|
34 |
|
|
#pragma once
|
35 |
|
|
#endif // _MSC_VER > 1000
|
36 |
|
|
|
37 |
|
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
38 |
|
|
|
39 |
|
|
#include <afxwin.h> // MFC core and standard components
|
40 |
|
|
#include <afxext.h> // MFC extensions
|
41 |
|
|
#include <afxdisp.h> // MFC Automation classes
|
42 |
|
|
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
|
43 |
|
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
44 |
|
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
45 |
|
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
46 |
|
|
|
47 |
|
|
#define WM_RUNCOMPLETE (WM_USER+20)
|
48 |
|
|
#define WM_TESTOUTPUT (WM_USER+21)
|
49 |
|
|
enum ResetType {RESET_NONE, RESET_X10, RESET_MANUAL};
|
50 |
|
|
enum TimeoutType {TIMEOUT_NONE,TIMEOUT_SPECIFIED, TIMEOUT_AUTOMATIC};
|
51 |
|
|
|
52 |
|
|
//{{AFX_INSERT_LOCATION}}
|
53 |
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
54 |
|
|
|
55 |
|
|
#endif // !defined(AFX_STDAFX_H__44CEA27C_11C4_11D3_A505_00A0C949ADAC__INCLUDED_)
|