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
99c5d195
Commit
99c5d195
authored
Jul 27, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32/tests: Write-strings warning fix.
parent
ccf7f077
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
prop.c
dlls/mapi32/tests/prop.c
+3
-3
No files found.
dlls/mapi32/tests/prop.c
View file @
99c5d195
...
...
@@ -897,7 +897,7 @@ static void test_LpValFindProp(void)
static
void
test_FBadRglpszA
(
void
)
{
LPSTR
lpStrs
[
4
];
char
*
szString
=
"A String"
;
static
CHAR
szString
[]
=
"A String"
;
BOOL
bRet
;
pFBadRglpszA
=
(
void
*
)
GetProcAddress
(
hMapi32
,
"FBadRglpszA@8"
);
...
...
@@ -922,7 +922,7 @@ static void test_FBadRglpszA(void)
static
void
test_FBadRglpszW
(
void
)
{
LPWSTR
lpStrs
[
4
];
WCHAR
szString
[]
=
{
'A'
,
' '
,
'S'
,
't'
,
'r'
,
'i'
,
'n'
,
'g'
,
'\0'
};
static
WCHAR
szString
[]
=
{
'A'
,
' '
,
'S'
,
't'
,
'r'
,
'i'
,
'n'
,
'g'
,
'\0'
};
BOOL
bRet
;
pFBadRglpszW
=
(
void
*
)
GetProcAddress
(
hMapi32
,
"FBadRglpszW@8"
);
...
...
@@ -1005,7 +1005,7 @@ static void test_FBadRow(void)
static
void
test_FBadProp
(
void
)
{
WCHAR
szEmpty
[]
=
{
'\0'
};
static
WCHAR
szEmpty
[]
=
{
'\0'
};
GUID
iid
;
ULONG
pt
,
res
;
SPropValue
pv
;
...
...
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