Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This enumeration specifies the conditions for performing the commit operation in the IStorage::Commitand IStream::Commitmethods.

Syntax

typedef enum tagSTGC { 
  STGC_DEFAULT = 0, 
  STGC_OVERWRITE = 1, 
  STGC_ONLYIFCURRENT = 2, 
  STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE = 4, 
} STGC; 

Elements

STGC_DEFAULT

You can specify this condition with STGC_CONSOLIDATE, or some combination of the other three flags in this list of elements. Use this value mainly to make your code more readable.

STGC_OVERWRITE

The commit operation can overwrite existing data to reduce overall space requirements.

This value is not recommended for typical usage because it is not as robust as the default value. In this case, it is possible for the commit operation to fail after the old data is overwritten but before the new data is completely committed. Then, neither the old version nor the new version of the storage object will be intact.

The following list shows the use cases for this value:

  • The user has indicated a willingness to risk losing the data.

  • The low-memory save sequence will be used to safely save the storage object to a smaller file.

  • A previous commit returned STG_E_MEDIUMFULL but overwriting the existing data would provide enough space to commit changes to the storage object.

Note:
The commit operation checks for adequate space before any overwriting occurs. Therefore, even with this value specified, if the commit operation fails because of space requirements, the old data will remain safe.
Note:
It is possible however, for data loss to occur with the STGC_OVERWRITE value specified, if the commit operation fails for any reason other than lack of disk space.
STGC_ONLYIFCURRENT

Prevents multiple users of a storage object from overwriting each other's changes.

The commit operation occurs only if there have been no changes to the saved storage object since the user most recently opened it. Therefore, the saved version of the storage object is the same version that the user has been editing.

If other users have changed the storage object, the commit operation fails and returns the STG_E_NOTCURRENT value.

You can override this behavior by calling the IStorage::Commitor IStream::Commitmethod again using the STGC_DEFAULT value.

STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE

Commits the changes to a write-behind disk cache, but does not save the cache to the disk.

In a write-behind disk cache, the operation that writes to disk actually writes to a disk cache, and therefore increasing performance. The cache is eventually written to the disk, but usually not until after the write operation has already returned.

The performance increase comes at the expense of an increased risk of losing data if a problem occurs before the cache is saved and the data in the cache is lost.

If you do not specify this value, then committing changes to root-level storage objects is robust even if a disk cache is used. The two-phase commit process ensures that data is stored on the disk and not just to the disk cache.

Remarks

You can specify STGC_DEFAULT or some combination of STGC_OVERWRITE, STGC_ONLYIFCURRENT, and STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE for normal commit operations. You can specify STGC_CONSOLIDATE with any other STGC flags.

Typically, you would use STGC_ONLYIFCURRENT to hHelp protect the storage object in cases where more than one user can edit the object simultaneously.

Requirements

Header wtypes.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

IStorage
IStream