📄 dvp.h
字号:
// dvp.h : main header file for the DVP application
//
#if !defined(AFX_DVP_H__9026F188_6A6A_4C70_90FB_ABB34619B22F__INCLUDED_)
#define AFX_DVP_H__9026F188_6A6A_4C70_90FB_ABB34619B22F__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
#include "MainFrm.h"
#include "dvpDoc.h"
#include "dvpView.h"
#include "public.h"
extern CDvpView * DvpView;
#define WM_USER_READ WM_USER + 100
/////////////////////////////////////////////////////////////////////////////
// CDvpApp:
// See dvp.cpp for the implementation of this class
//
class CDvpApp : public CWinApp
{
private:
CSerial * m_Serial;
public:
CDvpApp();
bool OpenComPort(int nPort = 2, int nBaud = 9600 ,CString nExt = "n,8,1");
bool CDvpApp::CloseComPort();
bool IsComOpened();
int ReadData( void *, int );
int SendData( const unsigned char *, int );
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDvpApp)
public:
virtual BOOL InitInstance();
virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual BOOL ProcessMessageFilter(int code, LPMSG lpMsg);
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CDvpApp)
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()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DVP_H__9026F188_6A6A_4C70_90FB_ABB34619B22F__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -