Changeset 7916 for trunk/src/oleaut32/stubs.cpp
- Timestamp:
- Feb 15, 2002, 4:07:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/stubs.cpp
r6944 r7916 1 /* $Id: stubs.cpp,v 1.1 2 2001-10-03 19:21:59sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.13 2002-02-15 15:07:40 sandervl Exp $ */ 2 2 /* 3 3 * Win32 COM/OLE stubs for OS/2 … … 680 680 return S_OK; 681 681 } 682 683 //***************************************************************************** 684 //***************************************************************************** 685 686 typedef struct tagOCPFIPARAMS 687 { 688 ULONG cbStructSize; 689 HWND hWndOwner; 690 int x; 691 int y; 692 LPCOLESTR lpszCaption; 693 ULONG cObjects; 694 LPUNKNOWN * lplpUnk; 695 ULONG cPages; 696 CLSID * lpPages; 697 LCID lcid; 698 DISPID dispidInitialProperty; 699 700 } OCPFIPARAMS, * LPOCPFIPARAMS; 701 702 HRESULT WIN32API OleCreatePropertyFrameIndirect(LPOCPFIPARAMS lpParams) 703 { 704 dprintf(("OLEAUT32: OleCreatePropertyFrameIndirect - stub")); 705 return S_OK; 706 } 707 708 //***************************************************************************** 709 //***************************************************************************** 710 HRESULT WIN32API OleCreatePropertyFrame(HWND hwndOwner, UINT x, UINT y, 711 LPCOLESTR lpszCaption, ULONG cObjects, LPUNKNOWN * ppUnk, ULONG cPages, 712 LPCLSID pPageClsID, LCID lcid, DWORD dwReserved, LPVOID pvReserved) 713 { 714 dprintf(("OLEAUT32: OleCreatePropertyFrame - stub")); 715 return S_OK; 716 } 717 682 //***************************************************************************** 683 //*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.