Source code of Windows XP (NT5)
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.

21 lines
916 B

  1. void __cdecl operator delete(void* p)
  2. {
  3. _free_dbg(p, _NORMAL_BLOCK);
  4. }
  5. void* __cdecl operator new(size_t nSize, LPCSTR lpszFileName, int nLine)
  6. {
  7. return _malloc_dbg(nSize, _NORMAL_BLOCK, lpszFileName, nLine);
  8. }
  9. #include <atlsnap.h>
  10. const IID IID_ISnapInDataInterface = {0x1FABD781,0xECDA,0x11D0,{0xAA,0xCE,0x00,0xAA,0x00,0xC0,0x01,0x89}};
  11. const UINT CSnapInBaseData::m_CCF_NODETYPE = RegisterClipboardFormat(CCF_NODETYPE);;
  12. const UINT CSnapInBaseData::m_CCF_SZNODETYPE = RegisterClipboardFormat(CCF_SZNODETYPE);
  13. const UINT CSnapInBaseData::m_CCF_DISPLAY_NAME = RegisterClipboardFormat(CCF_DISPLAY_NAME);
  14. const UINT CSnapInBaseData::m_CCF_SNAPIN_CLASSID = RegisterClipboardFormat(CCF_SNAPIN_CLASSID);
  15. const UINT CSnapInBaseData::m_CCF_SCOPEDATAITEM = RegisterClipboardFormat(_T("CCF_SCOPEDATAITEM"));
  16. const UINT CSnapInBaseData::m_CCF_RESULTDATAITEM = RegisterClipboardFormat(_T("CCF_RESULTDATAITEM"));