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
43d05cc5
Commit
43d05cc5
authored
Dec 26, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32/tests: Constify some character strings.
parent
dfe6a9b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
compobj.c
dlls/ole32/tests/compobj.c
+2
-2
storage32.c
dlls/ole32/tests/storage32.c
+1
-1
No files found.
dlls/ole32/tests/compobj.c
View file @
43d05cc5
...
...
@@ -65,9 +65,9 @@ static const GUID IID_TestPS = { 0x66666666, 0x8888, 0x7777, { 0x66, 0x66, 0x55,
DEFINE_GUID
(
CLSID_InProcFreeMarshaler
,
0x0000033a
,
0x0000
,
0x0000
,
0xc0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
);
static
WCHAR
stdfont
[]
=
{
'S'
,
't'
,
'd'
,
'F'
,
'o'
,
'n'
,
't'
,
0
};
static
const
WCHAR
stdfont
[]
=
{
'S'
,
't'
,
'd'
,
'F'
,
'o'
,
'n'
,
't'
,
0
};
static
const
WCHAR
wszNonExistent
[]
=
{
'N'
,
'o'
,
'n'
,
'E'
,
'x'
,
'i'
,
's'
,
't'
,
'e'
,
'n'
,
't'
,
0
};
static
WCHAR
wszCLSID_StdFont
[]
=
static
const
WCHAR
wszCLSID_StdFont
[]
=
{
'{'
,
'0'
,
'b'
,
'e'
,
'3'
,
'5'
,
'2'
,
'0'
,
'3'
,
'-'
,
'8'
,
'f'
,
'9'
,
'1'
,
'-'
,
'1'
,
'1'
,
'c'
,
'e'
,
'-'
,
'9'
,
'd'
,
'e'
,
'3'
,
'-'
,
'0'
,
'0'
,
'a'
,
'a'
,
'0'
,
'0'
,
'4'
,
'b'
,
'b'
,
'8'
,
'5'
,
'1'
,
'}'
,
0
...
...
dlls/ole32/tests/storage32.c
View file @
43d05cc5
...
...
@@ -2174,7 +2174,7 @@ static void test_fmtusertypestg(void)
static
const
char
fileA
[]
=
{
'f'
,
'm'
,
't'
,
't'
,
'e'
,
's'
,
't'
,
0
};
static
const
WCHAR
fileW
[]
=
{
'f'
,
'm'
,
't'
,
't'
,
'e'
,
's'
,
't'
,
0
};
static
WCHAR
userTypeW
[]
=
{
'S'
,
't'
,
'g'
,
'U'
,
's'
,
'r'
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
static
WCHAR
strmNameW
[]
=
{
1
,
'C'
,
'o'
,
'm'
,
'p'
,
'O'
,
'b'
,
'j'
,
0
};
static
const
WCHAR
strmNameW
[]
=
{
1
,
'C'
,
'o'
,
'm'
,
'p'
,
'O'
,
'b'
,
'j'
,
0
};
hr
=
StgCreateDocfile
(
fileW
,
STGM_CREATE
|
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
&
stg
);
ok
(
hr
==
S_OK
,
"should succeed, res=%x
\n
"
,
hr
);
...
...
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