windows-nt/Source/XPSP1/NT/shell/comctl32/v5/olestuff.h
2020-09-26 16:20:57 +08:00

26 lines
761 B
C

// OLESTUFF.H
// Prototypes for OLE delay-load stuff needed for the toolbar and tab
// drop target classes.
//
// History:
// 8/22/96 - t-mkim: created
//
#ifndef _OLESTUFF_H
#define _OLESTUFF_H
// This deals with the OLE library module handle
//
HMODULE PrivLoadOleLibrary ();
BOOL PrivFreeOleLibrary (HMODULE hmodOle);
// Following functions correspond to CoInitialize, CoUninitialize,
// RegisterDragDrop, and RevokeDragDrop. All take the HMODULE returned
// by PrivLoadOleLibrary.
//
HRESULT PrivCoInitialize (HMODULE hmodOle);
void PrivCoUninitialize (HMODULE hmodOle);
HRESULT PrivRegisterDragDrop (HMODULE hmodOle, HWND hwnd, IDropTarget *pDropTarget);
HRESULT PrivRevokeDragDrop (HMODULE hmodOle, HWND hwnd);
#endif //_OLESTUFF_H