
MFC源码
文章平均质量分 51
haiheng
这个作者很懒,什么都没留下…
展开
-
object.cpp
#include "Archive.h"#include "RuntimeClass.h"#include "object.h"//OBJCORE.cppconst struct CRuntimeClass CObject::classCObject = { "CObject", sizeof(CObject), 0xffff,原创 2005-03-23 22:53:00 · 1830 阅读 · 0 评论 -
object.h
//Afx.h#pragma once#include "RuntimeClass.h"class CArchive;class CObject{public: static const CRuntimeClass classCObject; //类类型链表 virtual CRuntimeClass* GetRuntimeClass() const; virtual ~CObject(原创 2005-03-23 22:19:00 · 1826 阅读 · 0 评论 -
CmdTarget.h
struct AFX_MSGMAP_ENTRY{ unsigned int nMessage; // windows消息 unsigned int nCode; // control code or WM_NOTIFY code unsigned int nID; // control ID (or 0 for windows messages) unsigned in原创 2005-03-28 21:01:00 · 1772 阅读 · 0 评论 -
CmdTarget.cpp
// BEGIN_MESSAGE_MAP(theClass, baseClass) // END_MESSAGE_MAP()const AFX_MSGMAP* theClass::GetMessageMap() const { return &theClass::messageMap; }const AFX_MSGMAP theClass::messageMap = { &baseClass:原创 2005-03-28 21:53:00 · 1861 阅读 · 1 评论