⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myobject.cpp

📁 一款国产的8051模拟器(全部源代码) 本软件是一款8051模拟器
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -