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
9046658f
Commit
9046658f
authored
Oct 03, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some prototypes.
parent
f4918b00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
typelib.c
dlls/oleaut32/typelib.c
+5
-5
No files found.
dlls/oleaut32/typelib.c
View file @
9046658f
...
...
@@ -177,7 +177,7 @@ QueryPathOfRegTypeLib(
* Failure: Status
*/
HRESULT
WINAPI
CreateTypeLib
(
SYSKIND
syskind
,
LPCOLESTR
szFile
,
/*ICreateTypeLib*/
IUnknown
**
ppctlib
SYSKIND
syskind
,
LPCOLESTR
szFile
,
ICreateTypeLib
**
ppctlib
)
{
FIXME
(
"(%d,%s,%p), stub!
\n
"
,
syskind
,
debugstr_w
(
szFile
),
ppctlib
);
return
E_FAIL
;
...
...
@@ -194,7 +194,7 @@ HRESULT WINAPI CreateTypeLib(
*/
HRESULT
WINAPI
LoadTypeLib16
(
LPOLESTR
szFile
,
/* [in] Name of file to load from */
void
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
ITypeLib
**
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
FIXME
(
"('%s',%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
...
...
@@ -218,8 +218,8 @@ HRESULT WINAPI LoadTypeLib16(
int
TLB_ReadTypeLib
(
PCHAR
file
,
ITypeLib2
**
ppTypelib
);
HRESULT
WINAPI
LoadTypeLib
(
OLECHAR
*
szFile
,
/* [in] Name of file to load from */
ITypeLib
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
const
OLECHAR
*
szFile
,
/* [in] Name of file to load from */
ITypeLib
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
TRACE
(
"
\n
"
);
return
LoadTypeLibEx
(
szFile
,
REGKIND_DEFAULT
,
pptLib
);
...
...
@@ -234,7 +234,7 @@ HRESULT WINAPI LoadTypeLib(
* Failure: Status
*/
HRESULT
WINAPI
LoadTypeLibEx
(
LP
OLESTR
szFile
,
/* [in] Name of file to load from */
LP
COLESTR
szFile
,
/* [in] Name of file to load from */
REGKIND
regkind
,
/* specify kind of registration */
ITypeLib
**
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
...
...
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