alarm.h
来自「《Visual C++串口通信技术与典型实例》中所举例子的源代码」· C头文件 代码 · 共 54 行
H
54 行
// alarm.h : main header file for the alarm application
//
#if !defined(AFX_alarm_H__6A358563_D2B7_4E00_80F8_3FB053A2D454__INCLUDED_)
#define AFX_alarm_H__6A358563_D2B7_4E00_80F8_3FB053A2D454__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CalarmApp:
// See alarm.cpp for the implementation of this class
//
class CalarmApp : public CWinApp
{
public:
CalarmApp();
_ConnectionPtr m_dConnTd;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CalarmApp)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CalarmApp)
afx_msg void OnAppAbout();
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
CString VARIANT2str(VARIANT t);
CString _bstr_t2str(_bstr_t t);
int binstr2i(CString str);
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_alarm_H__6A358563_D2B7_4E00_80F8_3FB053A2D454__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?