Changeset 8446 for trunk/src


Ignore:
Timestamp:
May 16, 2002, 9:35:15 PM (23 years ago)
Author:
sandervl
Message:

compile fix

Location:
trunk/src/oleaut32
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/oleaut32/makefile

    r7916 r8446  
    1 # $Id: makefile,v 1.32 2002-02-15 15:07:36 sandervl Exp $
     1# $Id: makefile,v 1.33 2002-05-16 19:35:14 sandervl Exp $
    22
    33#
     
    4747$(OBJDIR)\connpt.obj \
    4848$(OBJDIR)\dispatch.obj \
    49 $(OBJDIR)\propertyframe.obj \
    5049$(OBJDIR)\stubs.obj \
    5150!if "$(DEBUG)" == "1"
  • trunk/src/oleaut32/stubs.cpp

    r7916 r8446  
    1 /* $Id: stubs.cpp,v 1.13 2002-02-15 15:07:40 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.14 2002-05-16 19:35:15 sandervl Exp $ */
    22/*
    33 * Win32 COM/OLE stubs for OS/2
     
    1212
    1313#include "oleaut32.h"
     14#include "olectl.h"
     15#include "oleauto.h"
    1416
    1517//*****************************************************************************
     
    682684//*****************************************************************************
    683685//*****************************************************************************
     686/***********************************************************************
     687 * OleCreatePropertyFrameIndirect (OLEAUT32.416)
     688 */
     689HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams)
     690{
     691        dprintf(("not implemented"));
     692        return S_OK;
     693}
     694 
     695/***********************************************************************
     696 * OleCreatePropertyFrame (OLEAUT32.417)
     697 */
     698HRESULT WINAPI OleCreatePropertyFrame(
     699    HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
     700    LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid,
     701    DWORD dwReserved, LPVOID pvReserved )
     702{
     703        dprintf(("not implemented"));
     704        return S_OK;
     705}
Note: See TracChangeset for help on using the changeset viewer.