summaryrefslogtreecommitdiff
path: root/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h
diff options
context:
space:
mode:
authorSzymon Tokarz <wsx22@o2.pl>2013-05-21 16:41:00 +0000
committerSzymon Tokarz <wsx22@o2.pl>2013-05-21 16:41:00 +0000
commit6b6e144b140f8f3ce2fa6b1de7e6a13d92030caf (patch)
tree79dd830b197c5c5638b29df6b726f413a22034c9 /plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h
parentca5fa0ee002d6c18d03817053362bad866a78e90 (diff)
LotusNotify plugin by MaKaRSoFT adapted by me.
plugin from: http://maciej.wycik.pl/p_lotusnotify.php base sources from: https://code.google.com/p/makarplugins/ - Miranda NG version - unicode support - many fixes and code reworks git-svn-id: http://svn.miranda-ng.org/main/trunk@4780 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h')
-rw-r--r--plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h181
1 files changed, 181 insertions, 0 deletions
diff --git a/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h b/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h
new file mode 100644
index 0000000000..3eb9e6afe7
--- /dev/null
+++ b/plugins/LotusNotify/src/cnotesapi/include/nsfsearc.h
@@ -0,0 +1,181 @@
+
+#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
+