ntdll: Set the window title to the image name on the Unix side.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f55f0b8448
commit
c5b0dd5fc2
|
@ -1941,7 +1941,7 @@ static RTL_USER_PROCESS_PARAMETERS *build_initial_params(void)
|
||||||
size = (sizeof(*params)
|
size = (sizeof(*params)
|
||||||
+ MAX_PATH * sizeof(WCHAR) /* curdir */
|
+ MAX_PATH * sizeof(WCHAR) /* curdir */
|
||||||
+ (wcslen( cmdline ) + 1) * sizeof(WCHAR) /* command line */
|
+ (wcslen( cmdline ) + 1) * sizeof(WCHAR) /* command line */
|
||||||
+ (wcslen( main_wargv[0] ) + 1) * sizeof(WCHAR) /* image path */
|
+ (wcslen( main_wargv[0] ) + 1) * sizeof(WCHAR) * 2 /* image path + window title */
|
||||||
+ env_pos * sizeof(WCHAR));
|
+ env_pos * sizeof(WCHAR));
|
||||||
|
|
||||||
status = NtAllocateVirtualMemory( NtCurrentProcess(), (void **)¶ms, 0, &size,
|
status = NtAllocateVirtualMemory( NtCurrentProcess(), (void **)¶ms, 0, &size,
|
||||||
|
@ -1961,6 +1961,7 @@ static RTL_USER_PROCESS_PARAMETERS *build_initial_params(void)
|
||||||
|
|
||||||
put_unicode_string( main_wargv[0], &dst, ¶ms->ImagePathName );
|
put_unicode_string( main_wargv[0], &dst, ¶ms->ImagePathName );
|
||||||
put_unicode_string( cmdline, &dst, ¶ms->CommandLine );
|
put_unicode_string( cmdline, &dst, ¶ms->CommandLine );
|
||||||
|
put_unicode_string( main_wargv[0], &dst, ¶ms->WindowTitle );
|
||||||
free( image );
|
free( image );
|
||||||
free( cmdline );
|
free( cmdline );
|
||||||
free( curdir );
|
free( curdir );
|
||||||
|
|
Loading…
Reference in New Issue