Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2843934a
Commit
2843934a
authored
Oct 23, 2001
by
Hidenori Takeshima
Committed by
Alexandre Julliard
Oct 23, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented OleCreatePropertyFrame and
OleCreatePropertyFrameIndirect.
parent
cb3373c3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
24 deletions
+5
-24
Makefile.in
dlls/Makefile.in
+3
-2
Makefile.in
dlls/oleaut32/Makefile.in
+1
-0
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-0
propertyframe.c
dlls/oleaut32/propertyframe.c
+0
-0
stubs.c
dlls/oleaut32/stubs.c
+0
-22
No files found.
dlls/Makefile.in
View file @
2843934a
...
...
@@ -541,8 +541,9 @@ ole32/libole32.$(LIBEXT): dummy libadvapi32.$(LIBEXT) libuser32.$(LIBEXT) \
libgdi32.$(LIBEXT) librpcrt4.$(LIBEXT) libkernel32.$(LIBEXT) libntdll.$(LIBEXT)
@
cd
ole32
&&
$(MAKE)
libole32.
$(LIBEXT)
oleaut32/liboleaut32.$(LIBEXT)
:
dummy libole32.$(LIBEXT) libuser32.$(LIBEXT)
\
libgdi32.$(LIBEXT) libadvapi32.$(LIBEXT) libkernel32.$(LIBEXT) libntdll.$(LIBEXT)
oleaut32/liboleaut32.$(LIBEXT)
:
dummy libcomctl32.$(LIBEXT) libole32.$(LIBEXT)
\
libuser32.$(LIBEXT) libgdi32.$(LIBEXT) libadvapi32.$(LIBEXT) libkernel32.$(LIBEXT)
\
libntdll.$(LIBEXT)
@
cd
oleaut32
&&
$(MAKE)
liboleaut32.
$(LIBEXT)
olecli/libolecli32.$(LIBEXT)
:
dummy libole32.$(LIBEXT) libgdi32.$(LIBEXT)
\
...
...
dlls/oleaut32/Makefile.in
View file @
2843934a
...
...
@@ -18,6 +18,7 @@ C_SRCS = \
olefont.c
\
olepicture.c
\
parsedt.c
\
propertyframe.c
\
safearray.c
\
stubs.c
\
typelib.c
\
...
...
dlls/oleaut32/oleaut32.spec
View file @
2843934a
...
...
@@ -2,6 +2,7 @@ name oleaut32
type win32
rsrc version.res
import -delay comctl32.dll
import ole32.dll
import user32.dll
import gdi32.dll
...
...
dlls/oleaut32/propertyframe.c
0 → 100644
View file @
2843934a
This diff is collapsed.
Click to expand it.
dlls/oleaut32/stubs.c
View file @
2843934a
...
...
@@ -25,26 +25,4 @@ HCURSOR WINAPI OleIconToCursor( HINSTANCE hinstExe, HICON hicon)
return
S_OK
;
}
/***********************************************************************
* OleCreatePropertyFrameIndirect (OLEAUT32.416)
*/
HRESULT
WINAPI
OleCreatePropertyFrameIndirect
(
LPOCPFIPARAMS
lpParams
)
{
FIXME
(
"(%p), not implemented (olepro32.dll)
\n
"
,
lpParams
);
return
S_OK
;
}
/***********************************************************************
* OleCreatePropertyFrame (OLEAUT32.417)
*/
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,%s,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)
\n
"
,
hwndOwner
,
x
,
y
,
debugstr_w
(
lpszCaption
),
cObjects
,
ppUnk
,
cPages
,
pPageClsID
,
(
int
)
lcid
,
dwReserved
,
pvReserved
);
return
S_OK
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment