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
2a36dd23
Commit
2a36dd23
authored
Feb 05, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Remove no longer used create_flags from get_startup_info request.
parent
626669e1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
8 deletions
+1
-8
process.c
dlls/kernel/process.c
+0
-2
server_protocol.h
include/wine/server_protocol.h
+1
-2
process.c
server/process.c
+0
-2
protocol.def
server/protocol.def
+0
-1
trace.c
server/trace.c
+0
-1
No files found.
dlls/kernel/process.c
View file @
2a36dd23
...
...
@@ -65,7 +65,6 @@ static DWORD shutdown_flags = 0;
static
DWORD
shutdown_priority
=
0x280
;
static
DWORD
process_dword
;
int
main_create_flags
=
0
;
HMODULE
kernel32_handle
=
0
;
const
WCHAR
*
DIR_Windows
=
NULL
;
...
...
@@ -752,7 +751,6 @@ static BOOL init_user_process_params( RTL_USER_PROCESS_PARAMETERS *params )
if
((
ret
=
!
wine_server_call
(
req
)))
{
info_size
=
wine_server_reply_size
(
reply
);
main_create_flags
=
reply
->
create_flags
;
main_exe_file
=
reply
->
exe_file
;
hstdin
=
reply
->
hstdin
;
hstdout
=
reply
->
hstdout
;
...
...
include/wine/server_protocol.h
View file @
2a36dd23
...
...
@@ -247,7 +247,6 @@ struct get_startup_info_request
struct
get_startup_info_reply
{
struct
reply_header
__header
;
unsigned
int
create_flags
;
obj_handle_t
exe_file
;
obj_handle_t
hstdin
;
obj_handle_t
hstdout
;
...
...
@@ -4345,6 +4344,6 @@ union generic_reply
struct
query_symlink_reply
query_symlink_reply
;
};
#define SERVER_PROTOCOL_VERSION 22
2
#define SERVER_PROTOCOL_VERSION 22
3
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/process.c
View file @
2a36dd23
...
...
@@ -946,8 +946,6 @@ DECL_HANDLER(get_startup_info)
if
(
!
info
)
return
;
reply
->
create_flags
=
info
->
create_flags
;
if
(
info
->
exe_file
&&
!
(
reply
->
exe_file
=
alloc_handle
(
process
,
info
->
exe_file
,
GENERIC_READ
,
0
)))
return
;
...
...
server/protocol.def
View file @
2a36dd23
...
...
@@ -243,7 +243,6 @@ struct security_descriptor
/* Retrieve the new process startup info */
@REQ(get_startup_info)
@REPLY
unsigned int create_flags; /* creation flags */
obj_handle_t exe_file; /* file handle for main exe */
obj_handle_t hstdin; /* handle for stdin */
obj_handle_t hstdout; /* handle for stdout */
...
...
server/trace.c
View file @
2a36dd23
...
...
@@ -624,7 +624,6 @@ static void dump_get_startup_info_request( const struct get_startup_info_request
static
void
dump_get_startup_info_reply
(
const
struct
get_startup_info_reply
*
req
)
{
fprintf
(
stderr
,
" create_flags=%08x,"
,
req
->
create_flags
);
fprintf
(
stderr
,
" exe_file=%p,"
,
req
->
exe_file
);
fprintf
(
stderr
,
" hstdin=%p,"
,
req
->
hstdin
);
fprintf
(
stderr
,
" hstdout=%p,"
,
req
->
hstdout
);
...
...
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