diff options
| author | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:44 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2019-03-02 12:32:55 +0300 |
| commit | 931a7dc1ac0dbc7e6c1083583ced915e572f5b47 (patch) | |
| tree | 9fe9a6448d44030e26aa7107ce16044ed413e0d0 /plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h | |
| parent | dd7d9954042254e66e3bbbec7195c6be8b1a0663 (diff) | |
all protocols (even virtual ones) moved to the Protocols folder
Diffstat (limited to 'plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h')
| -rw-r--r-- | plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h | 181 |
1 files changed, 0 insertions, 181 deletions
diff --git a/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h b/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h deleted file mode 100644 index 3eb9e6afe7..0000000000 --- a/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h +++ /dev/null @@ -1,181 +0,0 @@ -
-#if defined(OS400) && (__OS400_TGTVRM__ >= 510)
-#pragma datamodel(P128)
-#endif
-
-/*********************************************************************/
-/* */
-/* Licensed Materials - Property of IBM */
-/* */
-/* L-GHUS-5VMPGW, L-GHUS-5S3PEE */
-/* (C) Copyright IBM Corp. 1989, 2005 All Rights Reserved */
-/* */
-/* US Government Users Restricted Rights - Use, duplication or */
-/* disclosure restricted by GSA ADP Schedule Contract with */
-/* IBM Corp. */
-/* */
-/*********************************************************************/
-
-
-
-/* Note Storage File Search Package Definitions */
-
-#ifndef NSF_SEARCH_DEFS
-#define NSF_SEARCH_DEFS
-
-#ifndef NSF_DEFS
-#include "nsfdata.h"
-#endif
-
-#ifndef MISC_DEFS
-#include "misc.h"
-#endif
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-/* Search Flag Definitions */
-
-#define SEARCH_ALL_VERSIONS 0x0001 /* Include deleted and non-matching notes in search */
- /* (ALWAYS "ON" in partial searches!) */
-#define SEARCH_SUMMARY 0x0002 /* TRUE to return summary buffer with each match */
-#define SEARCH_FILETYPE 0x0004 /* For directory mode file type filtering */
- /* If set, "NoteClassMask" is treated */
- /* as a FILE_xxx mask for directory filtering */
-#define SEARCH_NOTIFYDELETIONS 0x0010 /* Set NOTE_CLASS_NOTIFYDELETION bit of NoteClass for deleted notes */
-#define SEARCH_ALLPRIVS 0x0040 /* return error if we don't have full privileges */
-#define SEARCH_SESSION_USERNAME 0x0400 /* Use current session's user name, not server's */
-#define SEARCH_NOABSTRACTS 0x1000 /* Filter out "Truncated" documents */
-#define SEARCH_DATAONLY_FORMULA 0x4000 /* Search formula applies only to
- data notes, i.e., others match */
-
-/* This descriptor is embedded in the search queue entry. Note: The
- information returned in the "summary" field is always returned in
- machine-independent canonical form.
-
- Note: In DIRECTORY searches, the following information is returned
- in the SEARCH_MATCH structure (build 86 & later only):
-
- OriginatorID.File NSF modified time (later of data & non-data modified time)
- OriginatorID.Note 0 (unused)
- OriginatorID.SequenceTime NSF's Replica ID (Used by NSFMakeReplicaFormula)
- ID.Note NSF's Replica ID
- ID.File NSF's DBID
-*/
-
-/* SERetFlags values (bit-field) */
-
-#define SE_FNOMATCH 0x00 /* does not match formula (deleted or updated) */
-#define SE_FMATCH 0x01 /* matches formula */
-#define SE_FTRUNCATED 0x02 /* document truncated */
-#define SE_FPURGED 0x04 /* note has been purged. Returned only when SEARCH_INCLUDE_PURGED is used */
-#define SE_FNOPURGE 0x08 /* note has no purge status. Returned only when SEARCH_FULL_DATACUTOFF is used */
-#define SE_FSOFTDELETED 0x10 /* if SEARCH_NOTIFYDELETIONS: note is soft deleted; NoteClass&NOTE_CLASS_NOTIFYDELETION also on (off for hard delete) */
-
-/* If recompiling a V3 API application and you used the MatchesFormula field
- the following code change should be made:
-
- For V3:
-
- 1) if (SearchMatch.MatchesFormula == SE_FMATCH)
- 2) if (SearchMatch.MatchesFormula == SE_FNOMATCH)
- 3) if (SearchMatch.MatchesFormula != SE_FMATCH) is equivalent to 2)
- 4) if (SearchMatch.MatchesFormula != SE_FNOMATCH) is equivalent to 1)
-
- For V4
-
- 1) if (SearchMatch.SERetFlags & SE_FMATCH)
- 2) if (!(SearchMatch.SERetFlags & SE_FMATCH))
-*/
-
-typedef struct {
- GLOBALINSTANCEID ID; /* identity of the note within the file */
- ORIGINATORID OriginatorID; /* identity of the note in the universe */
- WORD NoteClass; /* class of the note */
- BYTE SERetFlags; /* MUST check for SE_FMATCH! */
- BYTE Privileges; /* note privileges */
- WORD SummaryLength; /* length of the summary information */
- /* 54 bytes to here */
- /* now comes an ITEM_TABLE with Summary Info */
-} SEARCH_MATCH;
-
-
-/* function templates */
-
-
-typedef STATUS (LNCALLBACKPTR NSFSEARCHPROC)
- (void far *EnumRoutineParameter,
- SEARCH_MATCH far *SearchMatch,
- ITEM_TABLE far *SummaryBuffer);
-
-STATUS LNPUBLIC NSFSearch (DBHANDLE hDB,
- FORMULAHANDLE hFormula,
- char far *ViewTitle,
- WORD SearchFlags,
- WORD NoteClassMask,
- TIMEDATE far *Since,
- NSFSEARCHPROC EnumRoutine,
- void far *EnumRoutineParameter,
- TIMEDATE far *retUntil);
-STATUS LNPUBLIC NSFSearchWithUserNameList (DBHANDLE hDB,
- FORMULAHANDLE hFormula,
- char far *ViewTitle,
- WORD SearchFlags,
- WORD NoteClassMask,
- TIMEDATE far *Since,
- NSFSEARCHPROC EnumRoutine,
- void far *EnumRoutineParameter,
- TIMEDATE far *retUntil,
- HANDLE nameList);
-
-
-/* Formula compilation functions */
-
-STATUS LNPUBLIC NSFFormulaCompile (char far *FormulaName, WORD FormulaNameLength,
- const char far *FormulaText, WORD FormulaTextLength,
- FORMULAHANDLE far *rethFormula,
- WORD far *retFormulaLength,
- STATUS far *retCompileError,
- WORD far *retCompileErrorLine,
- WORD far *retCompileErrorColumn,
- WORD far *retCompileErrorOffset,
- WORD far *retCompileErrorLength);
-STATUS LNPUBLIC NSFFormulaDecompile(char far *pFormulaBuffer,
- BOOL fSelectionFormula,
- HANDLE far *rethFormulaText,
- WORD far *retFormulaTextLength);
-STATUS LNPUBLIC NSFFormulaMerge(FORMULAHANDLE hSrcFormula, FORMULAHANDLE hDestFormula);
-STATUS LNPUBLIC NSFFormulaSummaryItem(FORMULAHANDLE hFormula, const char far *ItemName, WORD ItemNameLength);
-STATUS LNPUBLIC NSFFormulaGetSize(FORMULAHANDLE hFormula, WORD far *retFormulaLength);
-
-/* Formula computation (evaluation) functions */
-
-STATUS LNPUBLIC NSFComputeStart(WORD Flags,
- void far *pCompiledFormula,
- HCOMPUTE far *rethCompute);
-
-STATUS LNPUBLIC NSFComputeStop(HCOMPUTE hCompute);
-STATUS LNPUBLIC NSFComputeEvaluate(HCOMPUTE hCompute,
- NOTEHANDLE hNote,
- HANDLE far *rethResult,
- WORD far *retResultLength,
- BOOL far *retNoteMatchesFormula,
- BOOL far *retNoteShouldBeDeleted,
- BOOL far *retNoteModified);
-
-/* End of Note Storage File Search Package Definitions */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-
-
-#if defined(OS400) && (__OS400_TGTVRM__ >= 510)
-#pragma datamodel(pop)
-#endif
-
|
