Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4f85ca44
Commit
4f85ca44
authored
Jan 23, 1999
by
Francis Beaudet
Committed by
Alexandre Julliard
Jan 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make LoadTypeLib stub return failure instead of success.
parent
688c5658
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
typelib.c
ole/typelib.c
+9
-2
No files found.
ole/typelib.c
View file @
4f85ca44
...
@@ -108,6 +108,10 @@ HRESULT WINAPI LoadTypeLib16(
...
@@ -108,6 +108,10 @@ HRESULT WINAPI LoadTypeLib16(
void
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
void
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
{
FIXME
(
ole
,
"('%s',%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
FIXME
(
ole
,
"('%s',%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
if
(
pptLib
!=
0
)
*
pptLib
=
0
;
return
E_FAIL
;
return
E_FAIL
;
}
}
...
@@ -127,8 +131,11 @@ HRESULT WINAPI LoadTypeLib32(
...
@@ -127,8 +131,11 @@ HRESULT WINAPI LoadTypeLib32(
void
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
void
*
*
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
{
FIXME
(
ole
,
"('%s',%p): stub
\n
"
,
debugstr_w
(
szFile
),
pptLib
);
FIXME
(
ole
,
"('%s',%p): stub
\n
"
,
debugstr_w
(
szFile
),
pptLib
);
(
long
*
)
pptLib
=
0x123
;
return
S_OK
;
/* fixme: pretend everything is OK*/
if
(
pptLib
!=
0
)
*
pptLib
=
0
;
return
E_FAIL
;
}
}
/******************************************************************************
/******************************************************************************
...
...
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