Initial Release 5.0

Function : Note
NSFNoteOpenExt - Opens a note.
----------------------------------------------------------------------------------------------------------

#include <nsfnote.h>

STATUS LNPUBLIC NSFNoteOpenExt(
DBHANDLE hDB,
NOTEID NoteID,
DWORD flags,
NOTEHANDLE *rethNote);

Description :

This function reads a note into memory and returns a handle to the in-memory copy. Its input is a database handle and a note ID within that database. It is similar to NSFNoteOpen with additional options for the flags parameter. This function allows using extended 32-bit DWORD update options, as described in the entry OPEN_xxx.
Parameters :

Sample Usage :


  /* Reopen the Note and examine its contents */
  if (error_status = NSFNoteOpenExt(db_handle, note1_id,
                                 0, &note1_handle))
      goto Exit;
  else
      cleanup_state += CLOSE_NOTE1;


See Also :

NSFNoteClose
----------------------------------------------------------------------------------------------------------