mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CONSRV]
- Initialize the per-process structure size : fixes console initialization. svn path=/branches/ros-csrss/; revision=57702
This commit is contained in:
parent
bc0af6b272
commit
e03c8d5702
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ CSR_SERVER_DLL_INIT(ConServerDllInitialization)
|
|||
LoadedServerDll->DispatchTable = ConsoleServerApiDispatchTable;
|
||||
LoadedServerDll->ValidTable = ConsoleServerApiServerValidTable;
|
||||
LoadedServerDll->NameTable = ConsoleServerApiNameTable;
|
||||
LoadedServerDll->SizeOfProcessData = 0;
|
||||
LoadedServerDll->SizeOfProcessData = sizeof(CONSOLE_PROCESS_DATA);
|
||||
LoadedServerDll->ConnectCallback = NULL;
|
||||
LoadedServerDll->DisconnectCallback = Win32CsrReleaseConsole;
|
||||
LoadedServerDll->NewProcessCallback = ConsoleNewProcess;
|
||||
|
|
Loading…
Reference in a new issue