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
d1d1d020
Commit
d1d1d020
authored
Oct 01, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi/tests: Make some variables static.
parent
7064e883
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
db.c
dlls/msi/tests/db.c
+1
-1
install.c
dlls/msi/tests/install.c
+1
-1
package.c
dlls/msi/tests/package.c
+1
-1
suminfo.c
dlls/msi/tests/suminfo.c
+1
-1
No files found.
dlls/msi/tests/db.c
View file @
d1d1d020
...
...
@@ -8230,7 +8230,7 @@ static void test_select_with_tablenames(void)
DeleteFileA
(
msifile
);
}
UINT
ordervals
[
6
][
3
]
=
static
const
UINT
ordervals
[
6
][
3
]
=
{
{
MSI_NULL_INTEGER
,
12
,
13
},
{
1
,
2
,
3
},
...
...
dlls/msi/tests/install.c
View file @
d1d1d020
...
...
@@ -7661,7 +7661,7 @@ error:
RemoveDirectory
(
"msitest"
);
}
struct
sourcepathmap
st
atic
const
st
ruct
sourcepathmap
{
BOOL
sost
;
/* shortone\shorttwo */
BOOL
solt
;
/* shortone\longtwo */
...
...
dlls/msi/tests/package.c
View file @
d1d1d020
...
...
@@ -31,7 +31,7 @@
#include "wine/test.h"
static
const
char
msifile
[]
=
"winetest-package.msi"
;
char
CURR_DIR
[
MAX_PATH
];
static
char
CURR_DIR
[
MAX_PATH
];
static
UINT
(
WINAPI
*
pMsiApplyMultiplePatchesA
)(
LPCSTR
,
LPCSTR
,
LPCSTR
);
...
...
dlls/msi/tests/suminfo.c
View file @
d1d1d020
...
...
@@ -63,7 +63,7 @@
#define PID_MSISOURCE PID_WORDCOUNT
#define PID_MSIRESTRICT PID_CHARCOUNT
const
char
*
msifile
=
"winetest-suminfo.msi"
;
static
const
char
*
msifile
=
"winetest-suminfo.msi"
;
static
const
WCHAR
msifileW
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
't'
,
'e'
,
's'
,
't'
,
'-'
,
's'
,
'u'
,
'm'
,
'i'
,
'n'
,
'f'
,
'o'
,
'.'
,
'm'
,
's'
,
'i'
,
0
};
...
...
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