|
STGMOVE
The STGMOVE enumeration values indicate whether a storage element is to be moved or
copied. They are used in the IStorage::MoveElementTo method.
Defined in the IOLETypes pseudo-interface (oletyp.idl).
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
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 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
|