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
1cdf5cdd
Commit
1cdf5cdd
authored
Nov 29, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Make some data const and static.
parent
0bde8135
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
action.c
dlls/msi/action.c
+2
-2
dialog.c
dlls/msi/dialog.c
+1
-1
font.c
dlls/msi/font.c
+1
-1
update.c
dlls/msi/update.c
+1
-1
No files found.
dlls/msi/action.c
View file @
1cdf5cdd
...
...
@@ -240,7 +240,7 @@ struct _actions {
STANDARDACTIONHANDLER
handler
;
};
static
struct
_actions
StandardActions
[];
static
const
struct
_actions
StandardActions
[];
/********************************************************
...
...
@@ -4316,7 +4316,7 @@ static UINT ACTION_UnregisterComPlus( MSIPACKAGE *package )
return
msi_unimplemented_action_stub
(
package
,
"UnregisterComPlus"
,
table
);
}
static
struct
_actions
StandardActions
[]
=
{
static
const
struct
_actions
StandardActions
[]
=
{
{
szAllocateRegistrySpace
,
ACTION_AllocateRegistrySpace
},
{
szAppSearch
,
ACTION_AppSearch
},
{
szBindImage
,
ACTION_BindImage
},
...
...
dlls/msi/dialog.c
View file @
1cdf5cdd
...
...
@@ -2399,7 +2399,7 @@ static BOOL str_is_number( LPCWSTR str )
return
TRUE
;
}
WCHAR
column_keys
[][
80
]
=
static
const
WCHAR
column_keys
[][
80
]
=
{
{
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
'C'
,
'o'
,
's'
,
't'
,
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
0
},
{
'V'
,
'o'
,
'l'
,
'u'
,
'm'
,
'e'
,
'C'
,
'o'
,
's'
,
't'
,
'S'
,
'i'
,
'z'
,
'e'
,
0
},
...
...
dlls/msi/font.c
View file @
1cdf5cdd
...
...
@@ -137,7 +137,7 @@ static LPWSTR load_ttfname_from(LPCWSTR filename)
{
int
nPos
;
LPSTR
buf
;
static
LPCSTR
tt
=
" (TrueType)"
;
static
const
char
tt
[]
=
" (TrueType)"
;
ttRecord
.
uStringLength
=
SWAPWORD
(
ttRecord
.
uStringLength
);
ttRecord
.
uStringOffset
=
SWAPWORD
(
ttRecord
.
uStringOffset
);
...
...
dlls/msi/update.c
View file @
1cdf5cdd
...
...
@@ -171,7 +171,7 @@ static UINT UPDATE_find_matching_rows( struct tagMSIVIEW *view, UINT col, UINT v
}
static
MSIVIEWOPS
update_ops
=
static
const
MSIVIEWOPS
update_ops
=
{
UPDATE_fetch_int
,
NULL
,
...
...
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