50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* OlePro32 Stubs
|
|
*
|
|
* Copyright 1999 Corel Corporation
|
|
*
|
|
* Sean Langley
|
|
*/
|
|
|
|
#include "debugtools.h"
|
|
#include "ole2.h"
|
|
#include "windef.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(ole);
|
|
|
|
/***********************************************************************
|
|
* OLEPRO32_DllUnregisterServer
|
|
*/
|
|
HRESULT WINAPI OLEPRO32_DllUnregisterServer()
|
|
{
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* OLEPRO32_DllRegisterServer
|
|
*/
|
|
HRESULT WINAPI OLEPRO32_DllRegisterServer()
|
|
{
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* OLEPRO32_DllCanUnloadNow
|
|
*/
|
|
HRESULT WINAPI OLEPRO32_DllCanUnloadNow( )
|
|
{
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* OLEPRO32_DllGetClassObject
|
|
*/
|
|
HRESULT WINAPI OLEPRO32_DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
|
|
{
|
|
FIXME("not implemented (olepro32.dll) \n");
|
|
return S_OK;
|
|
}
|