|
DISCARDCACHE
The DISCARDCACHE enumeration values are used in the IOleCache2::DiscardCache method to specify what to do with caches that are to be discarded from memory
if their dirty bit has been set. The dwDiscardOptions parameter specifies whether or not to save these caches.
Defined in the
typedef enum tagDISCARDCACHE
{
DISCARDCACHE_SAVEIFDIRTY = 0,
DISCARDCACHE_NOSAVE = 1
} DISCARDCACHE;
Elements
DISCARDCACHE_SAVEIFDIRTY
Indicates that the cache is to be saved to disk.
DISCARDCACHE_NOSAVE
Indicates that the cache can be discarded without saving it.
See Also
IOleCache2::DiscardCache
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|