47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/*
|
|
* OlePro32 Stubs
|
|
*
|
|
* Copyright 1999 Corel Corporation
|
|
*
|
|
* Sean Langley
|
|
*/
|
|
|
|
#include "windef.h"
|
|
#include "debugtools.h"
|
|
#include "olectl.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(ole);
|
|
|
|
/***********************************************************************
|
|
* OleIconToCursor
|
|
*/
|
|
HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
|
|
{
|
|
FIXME("(%x,%x), not implemented (olepro32.dll)\n",hinstExe,hicon);
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* OleCreatePropertyFrameIndirect
|
|
*/
|
|
HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
|
|
{
|
|
FIXME("(%p), not implemented (olepro32.dll)\n",lpParams);
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* OleCreatePropertyFrame
|
|
*/
|
|
HRESULT WINAPI OleCreatePropertyFrame( HWND hwndOwner, UINT x, UINT y,
|
|
LPCOLESTR lpszCaption,ULONG cObjects, LPUNKNOWN* ppUnk,
|
|
ULONG cPages, LPCLSID pPageClsID, LCID lcid,
|
|
DWORD dwReserved, LPVOID pvReserved )
|
|
{
|
|
FIXME("(%x,%d,%d,%p,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)\n",
|
|
hwndOwner,x,y,lpszCaption,cObjects,ppUnk,cPages,pPageClsID,
|
|
(int)lcid,dwReserved,pvReserved);
|
|
return S_OK;
|
|
}
|
|
|