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
6ce40061
Commit
6ce40061
authored
May 03, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
May 03, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: release Win16Lock in WinExec16, CallProc[Ex]32W_16.
parent
b8fa2962
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
relay.c
if1632/relay.c
+5
-0
module.c
loader/module.c
+7
-1
No files found.
if1632/relay.c
View file @
6ce40061
...
@@ -434,6 +434,8 @@ static DWORD RELAY_CallProc32W(int Ex)
...
@@ -434,6 +434,8 @@ static DWORD RELAY_CallProc32W(int Ex)
int
aix
;
int
aix
;
dbg_decl_str
(
relay
,
1024
);
dbg_decl_str
(
relay
,
1024
);
SYSLEVEL_ReleaseWin16Lock
();
VA_START16
(
valist
);
VA_START16
(
valist
);
nrofargs
=
VA_ARG16
(
valist
,
DWORD
);
nrofargs
=
VA_ARG16
(
valist
,
DWORD
);
argconvmask
=
VA_ARG16
(
valist
,
DWORD
);
argconvmask
=
VA_ARG16
(
valist
,
DWORD
);
...
@@ -502,6 +504,9 @@ static DWORD RELAY_CallProc32W(int Ex)
...
@@ -502,6 +504,9 @@ static DWORD RELAY_CallProc32W(int Ex)
TRACE
(
relay
,
"%s - returns %08lx
\n
"
,
dbg_str
(
relay
),
ret
);
TRACE
(
relay
,
"%s - returns %08lx
\n
"
,
dbg_str
(
relay
),
ret
);
HeapFree
(
GetProcessHeap
(),
0
,
args
);
HeapFree
(
GetProcessHeap
(),
0
,
args
);
SYSLEVEL_RestoreWin16Lock
();
return
ret
;
return
ret
;
}
}
...
...
loader/module.c
View file @
6ce40061
...
@@ -805,7 +805,13 @@ static BOOL MODULE_CreateUnixProcess( LPCSTR filename, LPCSTR lpCmdLine,
...
@@ -805,7 +805,13 @@ static BOOL MODULE_CreateUnixProcess( LPCSTR filename, LPCSTR lpCmdLine,
*/
*/
HINSTANCE16
WINAPI
WinExec16
(
LPCSTR
lpCmdLine
,
UINT16
nCmdShow
)
HINSTANCE16
WINAPI
WinExec16
(
LPCSTR
lpCmdLine
,
UINT16
nCmdShow
)
{
{
return
WinExec
(
lpCmdLine
,
nCmdShow
);
HINSTANCE16
hInst
;
SYSLEVEL_ReleaseWin16Lock
();
hInst
=
WinExec
(
lpCmdLine
,
nCmdShow
);
SYSLEVEL_RestoreWin16Lock
();
return
hInst
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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