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
f06c8789
Commit
f06c8789
authored
Nov 21, 1999
by
Jim Aston
Committed by
Alexandre Julliard
Nov 21, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for StgSetTimes.
parent
a05b43fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ole32.spec
dlls/ole32/ole32.spec
+1
-1
storage32.c
dlls/ole32/storage32.c
+12
-0
No files found.
dlls/ole32/ole32.spec
View file @
f06c8789
...
@@ -150,7 +150,7 @@ type win32
...
@@ -150,7 +150,7 @@ type win32
147 stdcall StgIsStorageILockBytes(ptr) StgIsStorageILockBytes
147 stdcall StgIsStorageILockBytes(ptr) StgIsStorageILockBytes
148 stdcall StgOpenStorage(wstr ptr long ptr long ptr) StgOpenStorage
148 stdcall StgOpenStorage(wstr ptr long ptr long ptr) StgOpenStorage
149 stdcall StgOpenStorageOnILockBytes(ptr ptr long long long ptr) StgOpenStorageOnILockBytes
149 stdcall StgOpenStorageOnILockBytes(ptr ptr long long long ptr) StgOpenStorageOnILockBytes
150 st
ub
StgSetTimes
150 st
dcall StgSetTimes(ptr ptr ptr ptr )
StgSetTimes
151 stdcall StringFromCLSID(ptr ptr) StringFromCLSID
151 stdcall StringFromCLSID(ptr ptr) StringFromCLSID
152 stdcall StringFromGUID2(ptr ptr long) StringFromGUID2
152 stdcall StringFromGUID2(ptr ptr long) StringFromGUID2
153 stdcall StringFromIID(ptr ptr) StringFromCLSID
153 stdcall StringFromIID(ptr ptr) StringFromCLSID
...
...
dlls/ole32/storage32.c
View file @
f06c8789
...
@@ -5505,6 +5505,18 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
...
@@ -5505,6 +5505,18 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
}
}
/******************************************************************************
/******************************************************************************
* StgSetTimes [ole32.150]
*
*
*/
HRESULT
WINAPI
StgSetTimes
(
WCHAR
*
str
,
FILETIME
*
a
,
FILETIME
*
b
,
FILETIME
*
c
)
{
FIXME
(
"(%p, %p, %p, %p),stub!
\n
"
,
str
,
a
,
b
,
c
);
return
FALSE
;
}
/******************************************************************************
* StgIsStorageILockBytes [OLE32.147]
* StgIsStorageILockBytes [OLE32.147]
*
*
* Determines if the ILockBytes contains a storage object.
* Determines if the ILockBytes contains a storage object.
...
...
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