2000-02-07 16:26:56 +00:00
|
|
|
/*
|
|
|
|
* OlePro32 Stubs
|
|
|
|
*
|
|
|
|
* Copyright 1999 Corel Corporation
|
|
|
|
*
|
|
|
|
* Sean Langley
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "debugtools.h"
|
2000-02-29 22:02:11 +00:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "windef.h"
|
2000-02-07 16:26:56 +00:00
|
|
|
|
2000-02-29 22:02:11 +00:00
|
|
|
DEFAULT_DEBUG_CHANNEL(ole);
|
2000-02-07 16:26:56 +00:00
|
|
|
|
|
|
|
HRESULT WINAPI OLEPRO32_DllUnregisterServer()
|
|
|
|
{
|
|
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OLEPRO32_DllRegisterServer()
|
|
|
|
{
|
|
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OLEPRO32_DllCanUnloadNow( )
|
|
|
|
{
|
|
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OLEPRO32_DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
|
|
|
|
{
|
|
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
|
|
return S_OK;
|
|
|
|
}
|