Initial Release 5.0

Function : Database
NSFDbCopyNoteExt - Copy a single note from one database to another.
----------------------------------------------------------------------------------------------------------

#include <nsfdb.h>

STATUS LNPUBLIC NSFDbCopyNoteExt(
DBHANDLE hSrcDB,
DBID far *SrcDbID,
DBID far *SrcReplicaID,
NOTEID SrcNoteID,
DBHANDLE hDstDB,
DBID far *DstDbID,
DBID far *DstReplicaID,
DWORD dwOpenFlags,
DWORD dwUpdateFlags,
NOTEID far *retDstNoteID,
WORD far *retNoteClass
);

Description :

This function copies a single note from a source database to the destination database. This routine detects if the source and destination databases are replicas of each other, and sets ID information in reference items in notes appropriately. This routine is similar to NSFDbCopyNote, but it also allows you to specify flags that control the manner in which the source note is opened and flags which specify how the destination note is updated. This function allows using extended 32-bit DWORD update options, as described in the entries OPEN_xxx and UPDATE_xxx.

Parameters :

See Also :

NSFDbCopy
----------------------------------------------------------------------------------------------------------