STGMOVE

The STGMOVE enumeration values indicate whether a storage element is to be moved or copied. They are used in the IStorage::MoveElementTo method.

typedef enum tagSTGMOVE 
{ 
    STGMOVE_MOVE    = 0, 
    STGMOVE_COPY    = 1 
} STGMOVE; 
 

Elements

STGMOVE_MOVE
Indicates the method should move the data from the source to the destination.
STGMOVE_COPY
Indicates the method should copy the data from the source to the destination. A copy is the same as a move except the source element is not removed after copying the element to the destination. Copying an element on top of itself is undefined.

See Also

IStorage::MoveElementTo