Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// StdDtObj.cpp : Implementation of DataObject base classe
#include "stddtobj.h"
CDataObject::~CDataObject() { }
// Register the clipboard formats
CLIPFORMAT CDataObject::m_CFNodeType = (CLIPFORMAT)RegisterClipboardFormat(CCF_NODETYPE); CLIPFORMAT CDataObject::m_CFNodeTypeString = (CLIPFORMAT)RegisterClipboardFormat(CCF_SZNODETYPE); CLIPFORMAT CDataObject::m_CFSnapInCLSID = (CLIPFORMAT)RegisterClipboardFormat(CCF_SNAPIN_CLASSID); CLIPFORMAT CDataObject::m_CFDataObjectType = (CLIPFORMAT)RegisterClipboardFormat(L"FRAMEWRK_DATA_OBJECT_TYPE"); CLIPFORMAT CDataObject::m_CFSnapinPreloads = (CLIPFORMAT)RegisterClipboardFormat(CCF_SNAPIN_PRELOADS);
// m_cfRawCookie must be different for each snapin
|