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
c637fa3c
Commit
c637fa3c
authored
Jun 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
itss: Make the virtual table functions static where possible.
parent
fa26809f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
itss.c
dlls/itss/itss.c
+13
-13
No files found.
dlls/itss/itss.c
View file @
c637fa3c
...
...
@@ -216,7 +216,7 @@ typedef struct {
}
ITStorageImpl
;
HRESULT
WINAPI
ITStorageImpl_QueryInterface
(
static
HRESULT
WINAPI
ITStorageImpl_QueryInterface
(
IITStorage
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
...
...
@@ -234,7 +234,7 @@ HRESULT WINAPI ITStorageImpl_QueryInterface(
return
E_NOINTERFACE
;
}
ULONG
WINAPI
ITStorageImpl_AddRef
(
static
ULONG
WINAPI
ITStorageImpl_AddRef
(
IITStorage
*
iface
)
{
ITStorageImpl
*
This
=
(
ITStorageImpl
*
)
iface
;
...
...
@@ -242,7 +242,7 @@ ULONG WINAPI ITStorageImpl_AddRef(
return
InterlockedIncrement
(
&
This
->
ref
);
}
ULONG
WINAPI
ITStorageImpl_Release
(
static
ULONG
WINAPI
ITStorageImpl_Release
(
IITStorage
*
iface
)
{
ITStorageImpl
*
This
=
(
ITStorageImpl
*
)
iface
;
...
...
@@ -256,7 +256,7 @@ ULONG WINAPI ITStorageImpl_Release(
return
ref
;
}
HRESULT
WINAPI
ITStorageImpl_StgCreateDocfile
(
static
HRESULT
WINAPI
ITStorageImpl_StgCreateDocfile
(
IITStorage
*
iface
,
const
WCHAR
*
pwcsName
,
DWORD
grfMode
,
...
...
@@ -272,7 +272,7 @@ HRESULT WINAPI ITStorageImpl_StgCreateDocfile(
0
,
reserved
,
ppstgOpen
);
}
HRESULT
WINAPI
ITStorageImpl_StgCreateDocfileOnILockBytes
(
static
HRESULT
WINAPI
ITStorageImpl_StgCreateDocfileOnILockBytes
(
IITStorage
*
iface
,
ILockBytes
*
plkbyt
,
DWORD
grfMode
,
...
...
@@ -284,7 +284,7 @@ HRESULT WINAPI ITStorageImpl_StgCreateDocfileOnILockBytes(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_StgIsStorageFile
(
static
HRESULT
WINAPI
ITStorageImpl_StgIsStorageFile
(
IITStorage
*
iface
,
const
WCHAR
*
pwcsName
)
{
...
...
@@ -293,7 +293,7 @@ HRESULT WINAPI ITStorageImpl_StgIsStorageFile(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_StgIsStorageILockBytes
(
static
HRESULT
WINAPI
ITStorageImpl_StgIsStorageILockBytes
(
IITStorage
*
iface
,
ILockBytes
*
plkbyt
)
{
...
...
@@ -302,7 +302,7 @@ HRESULT WINAPI ITStorageImpl_StgIsStorageILockBytes(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_StgOpenStorage
(
static
HRESULT
WINAPI
ITStorageImpl_StgOpenStorage
(
IITStorage
*
iface
,
const
WCHAR
*
pwcsName
,
IStorage
*
pstgPriority
,
...
...
@@ -320,7 +320,7 @@ HRESULT WINAPI ITStorageImpl_StgOpenStorage(
snbExclude
,
reserved
,
ppstgOpen
);
}
HRESULT
WINAPI
ITStorageImpl_StgOpenStorageOnILockBytes
(
static
HRESULT
WINAPI
ITStorageImpl_StgOpenStorageOnILockBytes
(
IITStorage
*
iface
,
ILockBytes
*
plkbyt
,
IStorage
*
pStgPriority
,
...
...
@@ -334,7 +334,7 @@ HRESULT WINAPI ITStorageImpl_StgOpenStorageOnILockBytes(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_StgSetTimes
(
static
HRESULT
WINAPI
ITStorageImpl_StgSetTimes
(
IITStorage
*
iface
,
WCHAR
*
lpszName
,
FILETIME
*
pctime
,
...
...
@@ -346,7 +346,7 @@ HRESULT WINAPI ITStorageImpl_StgSetTimes(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_SetControlData
(
static
HRESULT
WINAPI
ITStorageImpl_SetControlData
(
IITStorage
*
iface
,
PITS_Control_Data
pControlData
)
{
...
...
@@ -355,7 +355,7 @@ HRESULT WINAPI ITStorageImpl_SetControlData(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_DefaultControlData
(
static
HRESULT
WINAPI
ITStorageImpl_DefaultControlData
(
IITStorage
*
iface
,
PITS_Control_Data
*
ppControlData
)
{
...
...
@@ -364,7 +364,7 @@ HRESULT WINAPI ITStorageImpl_DefaultControlData(
return
E_NOTIMPL
;
}
HRESULT
WINAPI
ITStorageImpl_Compact
(
static
HRESULT
WINAPI
ITStorageImpl_Compact
(
IITStorage
*
iface
,
const
WCHAR
*
pwcsName
,
ECompactionLev
iLev
)
...
...
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