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
519e2d8a
Commit
519e2d8a
authored
Oct 21, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/test: Fix activation context tests compilation with __WINESRC__ defined.
parent
a4057457
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
actctx.c
dlls/kernel32/tests/actctx.c
+3
-3
No files found.
dlls/kernel32/tests/actctx.c
View file @
519e2d8a
...
...
@@ -2001,7 +2001,7 @@ static void run_child_process(void)
char
path
[
MAX_PATH
];
char
**
argv
;
PROCESS_INFORMATION
pi
;
STARTUPINFO
si
=
{
0
};
STARTUPINFO
A
si
=
{
0
};
HANDLE
file
;
FILETIME
now
;
BOOL
ret
;
...
...
@@ -2025,7 +2025,7 @@ static void run_child_process(void)
CloseHandle
(
file
);
}
sprintf
(
cmdline
,
"
\"
%s
\"
%s manifest1"
,
argv
[
0
],
argv
[
1
]);
ret
=
CreateProcess
(
argv
[
0
],
cmdline
,
NULL
,
NULL
,
FALSE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
);
ret
=
CreateProcess
A
(
argv
[
0
],
cmdline
,
NULL
,
NULL
,
FALSE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
);
ok
(
ret
,
"Could not create process: %u
\n
"
,
GetLastError
());
winetest_wait_child_process
(
pi
.
hProcess
);
CloseHandle
(
pi
.
hThread
);
...
...
@@ -2125,7 +2125,7 @@ todo_wine
static
BOOL
init_funcs
(
void
)
{
HMODULE
hKernel32
=
GetModuleHandle
(
"kernel32
"
);
HMODULE
hKernel32
=
GetModuleHandle
A
(
"kernel32.dll
"
);
#define X(f) if (!(p##f = (void*)GetProcAddress(hKernel32, #f))) return FALSE;
X
(
ActivateActCtx
);
...
...
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