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.
 
 
 
 
 
 

32 lines
597 B

// stubs for OLE routines that we used to delay load or implement ourselves
#include "shellprv.h"
#pragma hdrstop
STDAPI SHFlushClipboard(void)
{
return OleFlushClipboard();
}
// we should not use these anymore, just call the OLE32 versions
STDAPI SHRegisterDragDrop(HWND hwnd, IDropTarget *pDropTarget)
{
return RegisterDragDrop(hwnd, pDropTarget);
}
STDAPI SHRevokeDragDrop(HWND hwnd)
{
return RevokeDragDrop(hwnd);
}
STDAPI_(void) SHFreeUnusedLibraries()
{
CoFreeUnusedLibraries();
}
STDAPI SHLoadOLE(LPARAM lParam)
{
return S_OK;
}