Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
1ef0d39c
Commit
1ef0d39c
authored
23 years ago
by
Marcus Meissner
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Made some FIXME()s print the respective strings passed.
Changed StgSetTimes() to correct type.
parent
d2838353
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/ole32/ole32.spec
+1
-1
1 addition, 1 deletion
dlls/ole32/ole32.spec
dlls/ole32/storage32.c
+5
-6
5 additions, 6 deletions
dlls/ole32/storage32.c
dlls/oleaut32/olefont.c
+3
-2
3 additions, 2 deletions
dlls/oleaut32/olefont.c
with
9 additions
and
9 deletions
dlls/ole32/ole32.spec
+
1
−
1
View file @
1ef0d39c
...
...
@@ -161,7 +161,7 @@ debug_channels (accel ole relay storage)
147 stdcall StgIsStorageILockBytes(ptr) StgIsStorageILockBytes
148 stdcall StgOpenStorage(wstr ptr long ptr long ptr) StgOpenStorage
149 stdcall StgOpenStorageOnILockBytes(ptr ptr long long long ptr) StgOpenStorageOnILockBytes
150 stdcall StgSetTimes(
p
tr ptr ptr ptr ) StgSetTimes
150 stdcall StgSetTimes(
ws
tr ptr ptr ptr ) StgSetTimes
151 stdcall StringFromCLSID(ptr ptr) StringFromCLSID
152 stdcall StringFromGUID2(ptr ptr long) StringFromGUID2
153 stdcall StringFromIID(ptr ptr) StringFromCLSID
...
...
This diff is collapsed.
Click to expand it.
dlls/ole32/storage32.c
+
5
−
6
View file @
1ef0d39c
...
...
@@ -2075,8 +2075,8 @@ HRESULT WINAPI StorageImpl_SetElementTimes(
const
FILETIME
*
patime
,
/* [in] */
const
FILETIME
*
pmtime
)
/* [in] */
{
FIXME
(
"
not implemented!
\n
"
);
return
E_NOTIMPL
;
FIXME
(
"
(%s,...), stub!
\n
"
,
debugstr_w
(
pwcsName
)
);
return
S_OK
;
}
/******************************************************************************
...
...
@@ -5625,11 +5625,10 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
*
*
*/
HRESULT
WINAPI
StgSetTimes
(
W
CHAR
*
str
,
FILETIME
*
a
,
FILETIME
*
b
,
FILETIME
*
c
)
HRESULT
WINAPI
StgSetTimes
(
OLE
CHAR
*
str
,
FILETIME
*
a
,
FILETIME
*
b
,
FILETIME
*
c
)
{
FIXME
(
"(%p, %p, %p, %p),stub!
\n
"
,
str
,
a
,
b
,
c
);
return
FALSE
;
FIXME
(
"(%s, %p, %p, %p),stub!
\n
"
,
debugstr_w
(
str
),
a
,
b
,
c
);
return
S_OK
;
}
/******************************************************************************
...
...
This diff is collapsed.
Click to expand it.
dlls/oleaut32/olefont.c
+
3
−
2
View file @
1ef0d39c
...
...
@@ -1197,8 +1197,9 @@ static HRESULT WINAPI OLEFontImpl_Invoke(
UINT
*
puArgErr
)
{
_ICOM_THIS_From_IDispatch
(
IFont
,
iface
);
FIXME
(
"(%p):Stub
\n
"
,
this
);
FIXME
(
"%p->(%ld,%s,%lx,%x):Stub
\n
"
,
this
,
dispIdMember
,
debugstr_guid
(
riid
),
lcid
,
wFlags
);
return
E_NOTIMPL
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment