Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*--------------------------------------------------------------------------* * * Microsoft Windows * Copyright (C) Microsoft Corporation, 1992 - 000 * * File: webctrl.inl * * Contents: Inline functions for CAMCWebViewCtrl * * History: 15-Feb-2000 jeffro Created * *--------------------------------------------------------------------------*/
#pragma once
/*+-------------------------------------------------------------------------* * CAMCWebViewCtrl::IsHistoryEnabled * * Returns true if the window has the WS_HISTORY style, false otherwise. *--------------------------------------------------------------------------*/
inline bool CAMCWebViewCtrl::IsHistoryEnabled () const { return ((GetStyle() & WS_HISTORY) != 0); }
/*+-------------------------------------------------------------------------* * CAMCWebViewCtrl::IsSinkEventsEnabled * * Returns true if the window has the WS_SINKEVENTS style, false otherwise. *--------------------------------------------------------------------------*/
inline bool CAMCWebViewCtrl::IsSinkEventsEnabled () const { return ((GetStyle() & WS_SINKEVENTS) != 0); }
|