// Modified by:
// Created: 16.05.99
// RCS-ID: $Id$
-// Copyright: (c) wxWindows team
+// Copyright: (c) wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
inline BOOL IsMaximized(HWND hwnd)
{
#ifdef __WXWINCE__
+ wxUnusedVar(hwnd);
return FALSE;
#else
return IsZoomed(hwnd);
inline HWND GetFirstChild(HWND hwnd)
{
#ifdef __WXWINCE__
+ wxUnusedVar(hwnd);
return 0;
#else
return GetTopWindow(hwnd);
#if defined(__WXWINCE__) && defined(DrawIcon) //#ifdef DrawIcon
#undef DrawIcon
- inline BOOL DrawIcon(HDC hdc, int x, int y, HICON hicon)
+ inline BOOL DrawIcon(HDC hdc, int x, int y, HICON hicon)
{
return DrawIconEx(hdc,x,y,hicon,0,0,0,NULL, DI_NORMAL) ;
}