mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Modify DPRINTs to print window styles in hexadecimal notation.
svn path=/trunk/; revision=9381
This commit is contained in:
parent
fb5a06a8d1
commit
95a2d3b54f
1 changed files with 4 additions and 8 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: window.c,v 1.231 2004/05/12 20:45:05 navaraf Exp $
|
/* $Id: window.c,v 1.232 2004/05/14 16:50:16 navaraf Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -29,10 +29,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
#include <w32k.h>
|
#include <w32k.h>
|
||||||
|
|
||||||
#define NDEBUG
|
|
||||||
#include <win32k/debug1.h>
|
|
||||||
#include <debug.h>
|
|
||||||
|
|
||||||
static WndProcHandle *WndProcHandlesArray = 0;
|
static WndProcHandle *WndProcHandlesArray = 0;
|
||||||
static WORD WndProcHandlesArraySize = 0;
|
static WORD WndProcHandlesArraySize = 0;
|
||||||
#define WPH_SIZE 0x40 /* the size to add to the WndProcHandle array each time */
|
#define WPH_SIZE 0x40 /* the size to add to the WndProcHandle array each time */
|
||||||
|
@ -1556,7 +1552,7 @@ NtUserCreateWindowEx(DWORD dwExStyle,
|
||||||
WindowObject->Class = ClassObject;
|
WindowObject->Class = ClassObject;
|
||||||
WindowObject->ExStyle = dwExStyle;
|
WindowObject->ExStyle = dwExStyle;
|
||||||
WindowObject->Style = dwStyle & ~WS_VISIBLE;
|
WindowObject->Style = dwStyle & ~WS_VISIBLE;
|
||||||
DPRINT("1: Style is now %d\n", WindowObject->Style);
|
DPRINT("1: Style is now %lx\n", WindowObject->Style);
|
||||||
|
|
||||||
WindowObject->SystemMenu = (HMENU)0;
|
WindowObject->SystemMenu = (HMENU)0;
|
||||||
WindowObject->ContextHelpId = 0;
|
WindowObject->ContextHelpId = 0;
|
||||||
|
@ -1622,12 +1618,12 @@ NtUserCreateWindowEx(DWORD dwExStyle,
|
||||||
if (!(dwStyle & WS_CHILD))
|
if (!(dwStyle & WS_CHILD))
|
||||||
{
|
{
|
||||||
WindowObject->Style |= WS_CLIPSIBLINGS;
|
WindowObject->Style |= WS_CLIPSIBLINGS;
|
||||||
DPRINT("3: Style is now %d\n", WindowObject->Style);
|
DPRINT("3: Style is now %lx\n", WindowObject->Style);
|
||||||
if (!(dwStyle & WS_POPUP))
|
if (!(dwStyle & WS_POPUP))
|
||||||
{
|
{
|
||||||
WindowObject->Style |= WS_CAPTION;
|
WindowObject->Style |= WS_CAPTION;
|
||||||
WindowObject->Flags |= WINDOWOBJECT_NEED_SIZE;
|
WindowObject->Flags |= WINDOWOBJECT_NEED_SIZE;
|
||||||
DPRINT("4: Style is now %d\n", WindowObject->Style);
|
DPRINT("4: Style is now %lx\n", WindowObject->Style);
|
||||||
/* FIXME: Note the window needs a size. */
|
/* FIXME: Note the window needs a size. */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue