Search structure for multi-line entry field.

typedef struct _SEARCH {
  USHORT     cb;          /*  Size of structure. */
  PCHAR      pchFind;     /*  String to search for. */
  PCHAR      pchReplace;  /*  String to replace with. */
  SHORT      cchFind;     /*  Length of pchFind string. */
  SHORT      cchReplace;  /*  Length of pchReplace string. */
  IPT        iptStart;    /*  Point at which to start search, or point where string was found. */
  IPT        iptStop;     /*  Point at which to stop search. */
  USHORT     cchFound;    /*  Length of string found at iptStart. */
} MLE_SEARCHDATA;

typedef   MLE _ SEARCHDATA   * PMLE _ SEARCHDATA ;


[Back] [Next]