KERNEL32.OpenConsoleW interface changed a proposed by KJK:Hyperion.

svn path=/trunk/; revision=4693
This commit is contained in:
Emanuele Aliberti 2003-05-16 20:33:15 +00:00
parent 1e77c45603
commit 79780a3bcd
2 changed files with 6 additions and 6 deletions

View file

@ -51,7 +51,7 @@ WINBOOL STDCALL CloseConsoleHandle(HANDLE Handle);
HANDLE STDCALL OpenConsoleW (LPWSTR wsName,
DWORD dwDesiredAccess,
LPSECURITY_ATTRIBUTES lpSecurityAttributes OPTIONAL,
BOOL bInheritHandle,
DWORD dwCreationDistribution);

View file

@ -1,4 +1,4 @@
/* $Id: console.c,v 1.56 2003/05/05 19:58:27 ea Exp $
/* $Id: console.c,v 1.57 2003/05/16 20:33:15 ea Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -357,10 +357,10 @@ InvalidateConsoleDIBits (DWORD Unknown0,
}
HANDLE STDCALL
OpenConsoleW (LPWSTR wsName,
DWORD dwDesiredAccess,
LPSECURITY_ATTRIBUTES lpSecurityAttributes OPTIONAL,
DWORD dwCreationDistribution)
OpenConsoleW (LPWSTR wsName,
DWORD dwDesiredAccess,
BOOL bInheritHandle,
DWORD dwCreationDistribution)
/*
* Undocumented
*/