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

  1. // stubs for OLE routines that we used to delay load or implement ourselves
  2. #include "shellprv.h"
  3. #pragma hdrstop
  4. STDAPI SHFlushClipboard(void)
  5. {
  6. return OleFlushClipboard();
  7. }
  8. // we should not use these anymore, just call the OLE32 versions
  9. STDAPI SHRegisterDragDrop(HWND hwnd, IDropTarget *pDropTarget)
  10. {
  11. return RegisterDragDrop(hwnd, pDropTarget);
  12. }
  13. STDAPI SHRevokeDragDrop(HWND hwnd)
  14. {
  15. return RevokeDragDrop(hwnd);
  16. }
  17. STDAPI_(void) SHFreeUnusedLibraries()
  18. {
  19. CoFreeUnusedLibraries();
  20. }
  21. STDAPI SHLoadOLE(LPARAM lParam)
  22. {
  23. return S_OK;
  24. }