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
76d6b767
Commit
76d6b767
authored
May 26, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
May 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Mark some data as constant.
parent
8f75f51c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
action.c
dlls/msi/action.c
+1
-1
automation.c
dlls/msi/automation.c
+1
-1
database.c
dlls/msi/database.c
+1
-1
No files found.
dlls/msi/action.c
View file @
76d6b767
...
...
@@ -2003,7 +2003,7 @@ static LPWSTR msi_get_disk_file_version( LPCWSTR filename )
{
static
const
WCHAR
name_fmt
[]
=
{
'%'
,
'u'
,
'.'
,
'%'
,
'u'
,
'.'
,
'%'
,
'u'
,
'.'
,
'%'
,
'u'
,
0
};
static
WCHAR
name
[]
=
{
'\\'
,
0
};
static
const
WCHAR
name
[]
=
{
'\\'
,
0
};
VS_FIXEDFILEINFO
*
lpVer
;
WCHAR
filever
[
0x100
];
LPVOID
version
;
...
...
dlls/msi/automation.c
View file @
76d6b767
...
...
@@ -405,7 +405,7 @@ static HRESULT WINAPI AutomationObject_Invoke(
(
hr
==
DISP_E_PARAMNOTFOUND
||
hr
==
DISP_E_EXCEPTION
))
{
static
const
WCHAR
szComma
[]
=
{
','
,
0
};
static
WCHAR
szExceptionSource
[]
=
{
'M'
,
's'
,
'i'
,
' '
,
'A'
,
'P'
,
'I'
,
' '
,
'E'
,
'r'
,
'r'
,
'o'
,
'r'
,
0
};
static
const
WCHAR
szExceptionSource
[]
=
{
'M'
,
's'
,
'i'
,
' '
,
'A'
,
'P'
,
'I'
,
' '
,
'E'
,
'r'
,
'r'
,
'o'
,
'r'
,
0
};
WCHAR
szExceptionDescription
[
MAX_PATH
];
BSTR
bstrParamNames
[
MAX_FUNC_PARAMS
];
unsigned
namesNo
,
i
;
...
...
dlls/msi/database.c
View file @
76d6b767
...
...
@@ -83,7 +83,7 @@ UINT MSI_OpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIDATABASE **pdb)
WCHAR
path
[
MAX_PATH
];
static
const
WCHAR
backslash
[]
=
{
'\\'
,
0
};
static
WCHAR
szTables
[]
=
{
'_'
,
'T'
,
'a'
,
'b'
,
'l'
,
'e'
,
's'
,
0
};
static
const
WCHAR
szTables
[]
=
{
'_'
,
'T'
,
'a'
,
'b'
,
'l'
,
'e'
,
's'
,
0
};
TRACE
(
"%s %s
\n
"
,
debugstr_w
(
szDBPath
),
debugstr_w
(
szPersist
)
);
...
...
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