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
4439e0b5
Commit
4439e0b5
authored
Feb 29, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Mar 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Make local functions static.
parent
617eb48d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
32 deletions
+32
-32
action.c
dlls/msi/action.c
+2
-2
automation.c
dlls/msi/automation.c
+3
-3
database.c
dlls/msi/database.c
+8
-8
package.c
dlls/msi/package.c
+18
-18
record.c
dlls/msi/record.c
+1
-1
No files found.
dlls/msi/action.c
View file @
4439e0b5
...
...
@@ -576,7 +576,7 @@ static UINT msi_apply_transforms( MSIPACKAGE *package )
return
r
;
}
BOOL
ui_sequence_exists
(
MSIPACKAGE
*
package
)
static
BOOL
ui_sequence_exists
(
MSIPACKAGE
*
package
)
{
MSIQUERY
*
view
;
UINT
rc
;
...
...
@@ -5220,7 +5220,7 @@ static BOOL add_wildcard(FILE_LIST *files, LPWSTR source, LPWSTR dest)
return
TRUE
;
}
BOOL
move_files_wildcard
(
LPWSTR
source
,
LPWSTR
dest
,
int
options
)
static
BOOL
move_files_wildcard
(
LPWSTR
source
,
LPWSTR
dest
,
int
options
)
{
WIN32_FIND_DATAW
wfd
;
HANDLE
hfile
;
...
...
dlls/msi/automation.c
View file @
4439e0b5
...
...
@@ -150,7 +150,7 @@ HRESULT load_type_info(IDispatch *iface, ITypeInfo **pptinfo, REFIID clsid, LCID
/* Create the automation object, placing the result in the pointer ppObj. The automation object is created
* with the appropriate clsid and invocation function. */
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
REFIID
clsid
,
static
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
REFIID
clsid
,
HRESULT
(
STDMETHODCALLTYPE
*
funcInvoke
)(
AutomationObject
*
,
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
),
void
(
STDMETHODCALLTYPE
*
funcFree
)(
AutomationObject
*
),
...
...
@@ -191,7 +191,7 @@ HRESULT create_automation_object(MSIHANDLE msiHandle, IUnknown *pUnkOuter, LPVOI
}
/* Create a list enumerator, placing the result in the pointer ppObj. */
HRESULT
create_list_enumerator
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
AutomationObject
*
pObj
,
ULONG
ulPos
)
static
HRESULT
create_list_enumerator
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
AutomationObject
*
pObj
,
ULONG
ulPos
)
{
ListEnumerator
*
object
;
...
...
@@ -705,7 +705,7 @@ static const struct IEnumVARIANTVtbl ListEnumerator_Vtbl =
/* Helper function that copies a passed parameter instead of using VariantChangeType like the actual DispGetParam.
This function is only for VARIANT type parameters that have several types that cannot be properly discriminated
using DispGetParam/VariantChangeType. */
HRESULT
WINAPI
DispGetParam_CopyOnly
(
static
HRESULT
WINAPI
DispGetParam_CopyOnly
(
DISPPARAMS
*
pdispparams
,
/* [in] Parameter list */
UINT
*
position
,
/* [in] Position of parameter to copy in pdispparams; on return will contain calculated position */
VARIANT
*
pvarResult
)
/* [out] Destination for resulting variant */
...
...
dlls/msi/database.c
View file @
4439e0b5
...
...
@@ -1052,32 +1052,32 @@ static ULONG WINAPI mrd_Release( IWineMsiRemoteDatabase *iface )
return
r
;
}
HRESULT
WINAPI
mrd_IsTablePersistent
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
table
,
MSICONDITION
*
persistent
)
static
HRESULT
WINAPI
mrd_IsTablePersistent
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
table
,
MSICONDITION
*
persistent
)
{
msi_remote_database_impl
*
This
=
mrd_from_IWineMsiRemoteDatabase
(
iface
);
*
persistent
=
MsiDatabaseIsTablePersistentW
(
This
->
database
,
(
LPWSTR
)
table
);
return
S_OK
;
}
HRESULT
WINAPI
mrd_GetPrimaryKeys
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
table
,
MSIHANDLE
*
keys
)
static
HRESULT
WINAPI
mrd_GetPrimaryKeys
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
table
,
MSIHANDLE
*
keys
)
{
msi_remote_database_impl
*
This
=
mrd_from_IWineMsiRemoteDatabase
(
iface
);
UINT
r
=
MsiDatabaseGetPrimaryKeysW
(
This
->
database
,
(
LPWSTR
)
table
,
keys
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrd_GetSummaryInformation
(
IWineMsiRemoteDatabase
*
iface
,
UINT
updatecount
,
MSIHANDLE
*
suminfo
)
static
HRESULT
WINAPI
mrd_GetSummaryInformation
(
IWineMsiRemoteDatabase
*
iface
,
UINT
updatecount
,
MSIHANDLE
*
suminfo
)
{
msi_remote_database_impl
*
This
=
mrd_from_IWineMsiRemoteDatabase
(
iface
);
UINT
r
=
MsiGetSummaryInformationW
(
This
->
database
,
NULL
,
updatecount
,
suminfo
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrd_OpenView
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
query
,
MSIHANDLE
*
view
)
static
HRESULT
WINAPI
mrd_OpenView
(
IWineMsiRemoteDatabase
*
iface
,
BSTR
query
,
MSIHANDLE
*
view
)
{
msi_remote_database_impl
*
This
=
mrd_from_IWineMsiRemoteDatabase
(
iface
);
UINT
r
=
MsiDatabaseOpenViewW
(
This
->
database
,
(
LPWSTR
)
query
,
view
);
...
...
dlls/msi/package.c
View file @
4439e0b5
...
...
@@ -1648,7 +1648,7 @@ static HRESULT WINAPI mrp_SetMsiHandle( IWineMsiRemotePackage *iface, MSIHANDLE
return
S_OK
;
}
HRESULT
WINAPI
mrp_GetActiveDatabase
(
IWineMsiRemotePackage
*
iface
,
MSIHANDLE
*
handle
)
static
HRESULT
WINAPI
mrp_GetActiveDatabase
(
IWineMsiRemotePackage
*
iface
,
MSIHANDLE
*
handle
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
IWineMsiRemoteDatabase
*
rdb
=
NULL
;
...
...
@@ -1675,7 +1675,7 @@ HRESULT WINAPI mrp_GetActiveDatabase( IWineMsiRemotePackage *iface, MSIHANDLE *h
return
S_OK
;
}
HRESULT
WINAPI
mrp_GetProperty
(
IWineMsiRemotePackage
*
iface
,
BSTR
property
,
BSTR
*
value
,
DWORD
*
size
)
static
HRESULT
WINAPI
mrp_GetProperty
(
IWineMsiRemotePackage
*
iface
,
BSTR
property
,
BSTR
*
value
,
DWORD
*
size
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
;
...
...
@@ -1687,63 +1687,63 @@ HRESULT WINAPI mrp_GetProperty( IWineMsiRemotePackage *iface, BSTR property, BST
return
S_OK
;
}
HRESULT
WINAPI
mrp_SetProperty
(
IWineMsiRemotePackage
*
iface
,
BSTR
property
,
BSTR
value
)
static
HRESULT
WINAPI
mrp_SetProperty
(
IWineMsiRemotePackage
*
iface
,
BSTR
property
,
BSTR
value
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSetPropertyW
(
This
->
package
,
(
LPWSTR
)
property
,
(
LPWSTR
)
value
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_ProcessMessage
(
IWineMsiRemotePackage
*
iface
,
INSTALLMESSAGE
message
,
MSIHANDLE
record
)
static
HRESULT
WINAPI
mrp_ProcessMessage
(
IWineMsiRemotePackage
*
iface
,
INSTALLMESSAGE
message
,
MSIHANDLE
record
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiProcessMessage
(
This
->
package
,
message
,
record
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_DoAction
(
IWineMsiRemotePackage
*
iface
,
BSTR
action
)
static
HRESULT
WINAPI
mrp_DoAction
(
IWineMsiRemotePackage
*
iface
,
BSTR
action
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiDoActionW
(
This
->
package
,
(
LPWSTR
)
action
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_Sequence
(
IWineMsiRemotePackage
*
iface
,
BSTR
table
,
int
sequence
)
static
HRESULT
WINAPI
mrp_Sequence
(
IWineMsiRemotePackage
*
iface
,
BSTR
table
,
int
sequence
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSequenceW
(
This
->
package
,
(
LPWSTR
)
table
,
sequence
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_GetTargetPath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
*
value
,
DWORD
*
size
)
static
HRESULT
WINAPI
mrp_GetTargetPath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
*
value
,
DWORD
*
size
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiGetTargetPathW
(
This
->
package
,
(
LPWSTR
)
folder
,
(
LPWSTR
)
value
,
size
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_SetTargetPath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
value
)
static
HRESULT
WINAPI
mrp_SetTargetPath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
value
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSetTargetPathW
(
This
->
package
,
(
LPWSTR
)
folder
,
(
LPWSTR
)
value
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_GetSourcePath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
*
value
,
DWORD
*
size
)
static
HRESULT
WINAPI
mrp_GetSourcePath
(
IWineMsiRemotePackage
*
iface
,
BSTR
folder
,
BSTR
*
value
,
DWORD
*
size
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiGetSourcePathW
(
This
->
package
,
(
LPWSTR
)
folder
,
(
LPWSTR
)
value
,
size
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_GetMode
(
IWineMsiRemotePackage
*
iface
,
MSIRUNMODE
mode
,
BOOL
*
ret
)
static
HRESULT
WINAPI
mrp_GetMode
(
IWineMsiRemotePackage
*
iface
,
MSIRUNMODE
mode
,
BOOL
*
ret
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
*
ret
=
MsiGetMode
(
This
->
package
,
mode
);
return
S_OK
;
}
HRESULT
WINAPI
mrp_GetFeatureState
(
IWineMsiRemotePackage
*
iface
,
BSTR
feature
,
static
HRESULT
WINAPI
mrp_GetFeatureState
(
IWineMsiRemotePackage
*
iface
,
BSTR
feature
,
INSTALLSTATE
*
installed
,
INSTALLSTATE
*
action
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
...
...
@@ -1751,14 +1751,14 @@ HRESULT WINAPI mrp_GetFeatureState( IWineMsiRemotePackage *iface, BSTR feature,
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_SetFeatureState
(
IWineMsiRemotePackage
*
iface
,
BSTR
feature
,
INSTALLSTATE
state
)
static
HRESULT
WINAPI
mrp_SetFeatureState
(
IWineMsiRemotePackage
*
iface
,
BSTR
feature
,
INSTALLSTATE
state
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSetFeatureStateW
(
This
->
package
,
(
LPWSTR
)
feature
,
state
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_GetComponentState
(
IWineMsiRemotePackage
*
iface
,
BSTR
component
,
static
HRESULT
WINAPI
mrp_GetComponentState
(
IWineMsiRemotePackage
*
iface
,
BSTR
component
,
INSTALLSTATE
*
installed
,
INSTALLSTATE
*
action
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
...
...
@@ -1766,28 +1766,28 @@ HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR compone
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_SetComponentState
(
IWineMsiRemotePackage
*
iface
,
BSTR
component
,
INSTALLSTATE
state
)
static
HRESULT
WINAPI
mrp_SetComponentState
(
IWineMsiRemotePackage
*
iface
,
BSTR
component
,
INSTALLSTATE
state
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSetComponentStateW
(
This
->
package
,
(
LPWSTR
)
component
,
state
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_GetLanguage
(
IWineMsiRemotePackage
*
iface
,
LANGID
*
language
)
static
HRESULT
WINAPI
mrp_GetLanguage
(
IWineMsiRemotePackage
*
iface
,
LANGID
*
language
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
*
language
=
MsiGetLanguage
(
This
->
package
);
return
S_OK
;
}
HRESULT
WINAPI
mrp_SetInstallLevel
(
IWineMsiRemotePackage
*
iface
,
int
level
)
static
HRESULT
WINAPI
mrp_SetInstallLevel
(
IWineMsiRemotePackage
*
iface
,
int
level
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiSetInstallLevel
(
This
->
package
,
level
);
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_FormatRecord
(
IWineMsiRemotePackage
*
iface
,
MSIHANDLE
record
,
static
HRESULT
WINAPI
mrp_FormatRecord
(
IWineMsiRemotePackage
*
iface
,
MSIHANDLE
record
,
BSTR
value
,
DWORD
*
size
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
...
...
@@ -1795,7 +1795,7 @@ HRESULT WINAPI mrp_FormatRecord( IWineMsiRemotePackage *iface, MSIHANDLE record,
return
HRESULT_FROM_WIN32
(
r
);
}
HRESULT
WINAPI
mrp_EvaluateCondition
(
IWineMsiRemotePackage
*
iface
,
BSTR
condition
)
static
HRESULT
WINAPI
mrp_EvaluateCondition
(
IWineMsiRemotePackage
*
iface
,
BSTR
condition
)
{
msi_remote_package_impl
*
This
=
mrp_from_IWineMsiRemotePackage
(
iface
);
UINT
r
=
MsiEvaluateConditionW
(
This
->
package
,
(
LPWSTR
)
condition
);
...
...
dlls/msi/record.c
View file @
4439e0b5
...
...
@@ -673,7 +673,7 @@ UINT MSI_RecordSetStream(MSIRECORD *rec, UINT iField, IStream *stream)
return
ERROR_SUCCESS
;
}
UINT
MSI_RecordSetStreamFromFileW
(
MSIRECORD
*
rec
,
UINT
iField
,
LPCWSTR
szFilename
)
static
UINT
MSI_RecordSetStreamFromFileW
(
MSIRECORD
*
rec
,
UINT
iField
,
LPCWSTR
szFilename
)
{
IStream
*
stm
=
NULL
;
HRESULT
r
;
...
...
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