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
1ef0d39c
Commit
1ef0d39c
authored
Jul 14, 2001
by
Marcus Meissner
Committed by
Alexandre Julliard
Jul 14, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made some FIXME()s print the respective strings passed.
Changed StgSetTimes() to correct type.
parent
d2838353
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
ole32.spec
dlls/ole32/ole32.spec
+1
-1
storage32.c
dlls/ole32/storage32.c
+5
-6
olefont.c
dlls/oleaut32/olefont.c
+3
-2
No files found.
dlls/ole32/ole32.spec
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
...
...
dlls/ole32/storage32.c
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
(
WCHAR
*
str
,
FILETIME
*
a
,
FILETIME
*
b
,
FILETIME
*
c
)
HRESULT
WINAPI
StgSetTimes
(
OLECHAR
*
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
;
}
/******************************************************************************
...
...
dlls/oleaut32/olefont.c
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
;
}
...
...
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