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
0ba64e58
Commit
0ba64e58
authored
Jun 02, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel/tests: Write-strings warnings fix.
parent
63efd7f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
process.c
dlls/kernel/tests/process.c
+13
-10
No files found.
dlls/kernel/tests/process.c
View file @
0ba64e58
...
...
@@ -429,6 +429,9 @@ static void test_Startup(void)
char
buffer
[
MAX_PATH
];
PROCESS_INFORMATION
info
;
STARTUPINFOA
startup
,
si
;
static
CHAR
title
[]
=
"I'm the title string"
,
desktop
[]
=
"I'm the desktop string"
,
empty
[]
=
""
;
/* let's start simplistic */
memset
(
&
startup
,
0
,
sizeof
(
startup
));
...
...
@@ -465,8 +468,8 @@ static void test_Startup(void)
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
"I'm the title string"
;
startup
.
lpDesktop
=
"I'm the desktop string"
;
startup
.
lpTitle
=
title
;
startup
.
lpDesktop
=
desktop
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
startup
.
dwX
=
0x34343434
;
...
...
@@ -503,7 +506,7 @@ static void test_Startup(void)
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
"I'm the title string"
;
startup
.
lpTitle
=
title
;
startup
.
lpDesktop
=
NULL
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
...
...
@@ -541,8 +544,8 @@ static void test_Startup(void)
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
"I'm the title string"
;
startup
.
lpDesktop
=
""
;
startup
.
lpTitle
=
title
;
startup
.
lpDesktop
=
empty
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
startup
.
dwX
=
0x34343434
;
...
...
@@ -580,7 +583,7 @@ static void test_Startup(void)
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
NULL
;
startup
.
lpDesktop
=
"I'm the desktop string"
;
startup
.
lpDesktop
=
desktop
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
startup
.
dwX
=
0x34343434
;
...
...
@@ -617,8 +620,8 @@ static void test_Startup(void)
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
""
;
startup
.
lpDesktop
=
"I'm the desktop string"
;
startup
.
lpTitle
=
empty
;
startup
.
lpDesktop
=
desktop
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
startup
.
dwX
=
0x34343434
;
...
...
@@ -655,8 +658,8 @@ static void test_Startup(void)
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
startup
.
lpTitle
=
""
;
startup
.
lpDesktop
=
""
;
startup
.
lpTitle
=
empty
;
startup
.
lpDesktop
=
empty
;
startup
.
dwXCountChars
=
0x12121212
;
startup
.
dwYCountChars
=
0x23232323
;
startup
.
dwX
=
0x34343434
;
...
...
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