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
b32c3102
Commit
b32c3102
authored
Sep 27, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Rename stubs.c file.
parent
11d332c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
16 deletions
+11
-16
Makefile.in
dlls/oleaut32/Makefile.in
+1
-1
olepropframe.c
dlls/oleaut32/olepropframe.c
+10
-15
No files found.
dlls/oleaut32/Makefile.in
View file @
b32c3102
...
...
@@ -13,10 +13,10 @@ C_SRCS = \
oleaut.c
\
olefont.c
\
olepicture.c
\
olepropframe.c
\
recinfo.c
\
regsvr.c
\
safearray.c
\
stubs.c
\
tmarshal.c
\
typelib.c
\
typelib2.c
\
...
...
dlls/oleaut32/
stubs
.c
→
dlls/oleaut32/
olepropframe
.c
View file @
b32c3102
/*
* OlePro32 Stubs
*
* Copyright 1999 Corel Corporation
*
* Sean Langley
*
* This library is free software; you can redistribute it and/or
...
...
@@ -24,8 +21,6 @@
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/debug.h"
#include "ole2.h"
#include "olectl.h"
...
...
@@ -35,22 +30,22 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
/***********************************************************************
* OleCreatePropertyFrameIndirect (OLEAUT32.416)
*/
HRESULT
WINAPI
OleCreatePropertyFrameIndirect
(
LPOCPFIPARAMS
lpParams
)
HRESULT
WINAPI
OleCreatePropertyFrameIndirect
(
LPOCPFIPARAMS
lpParams
)
{
FIXME
(
"(%p), not implemented (olepro32.dll)
\n
"
,
lpParams
);
return
S_OK
;
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
)
HWND
hwndOwner
,
UINT
x
,
UINT
y
,
LPCOLESTR
lpszCaption
,
ULONG
cObjects
,
LPUNKNOWN
*
ppUnk
,
ULONG
cPages
,
LPCLSID
pPageClsID
,
LCID
lcid
,
DWORD
dwReserved
,
LPVOID
pvReserved
)
{
FIXME
(
"(%p,%d,%d,%s,%d,%p,%d,%p,%x,%d,%p), not implemented (olepro32.dll)
\n
"
,
hwndOwner
,
x
,
y
,
debugstr_w
(
lpszCaption
),
cObjects
,
ppUnk
,
cPages
,
pPageClsID
,
(
int
)
lcid
,
dwReserved
,
pvReserved
);
return
S_OK
;
FIXME
(
"(%p,%d,%d,%s,%d,%p,%d,%p,%x,%d,%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