myobject.cpp
来自「一款国产的8051模拟器(全部源代码) 本软件是一款8051模拟器」· C++ 代码 · 共 49 行
CPP
49 行
// MyObject.cpp: implementation of the MyObject class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//#include "8051class.h"
#include "MyObject.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
MyObject::MyObject()
{
}
MyObject::~MyObject()
{
}
int MyObject::Serial_Char_Event_CallBack(char ch)
{
return 0;
}
int MyObject::Serial_String_Event_CallBack(TCHAR *str)
{
return 0;
}
int MyObject::WndCommand(UINT uid)
{
return 0;
}
int MyObject::SetpView(UINT p)
{
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?