- Timestamp:
- May 16, 2002, 9:35:15 PM (23 years ago)
- Location:
- trunk/src/oleaut32
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/makefile
r7916 r8446 1 # $Id: makefile,v 1.3 2 2002-02-15 15:07:36sandervl Exp $1 # $Id: makefile,v 1.33 2002-05-16 19:35:14 sandervl Exp $ 2 2 3 3 # … … 47 47 $(OBJDIR)\connpt.obj \ 48 48 $(OBJDIR)\dispatch.obj \ 49 $(OBJDIR)\propertyframe.obj \50 49 $(OBJDIR)\stubs.obj \ 51 50 !if "$(DEBUG)" == "1" -
trunk/src/oleaut32/stubs.cpp
r7916 r8446 1 /* $Id: stubs.cpp,v 1.1 3 2002-02-15 15:07:40sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.14 2002-05-16 19:35:15 sandervl Exp $ */ 2 2 /* 3 3 * Win32 COM/OLE stubs for OS/2 … … 12 12 13 13 #include "oleaut32.h" 14 #include "olectl.h" 15 #include "oleauto.h" 14 16 15 17 //***************************************************************************** … … 682 684 //***************************************************************************** 683 685 //***************************************************************************** 686 /*********************************************************************** 687 * OleCreatePropertyFrameIndirect (OLEAUT32.416) 688 */ 689 HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams) 690 { 691 dprintf(("not implemented")); 692 return S_OK; 693 } 694 695 /*********************************************************************** 696 * OleCreatePropertyFrame (OLEAUT32.417) 697 */ 698 HRESULT 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.