fFindStringInMultiSZ

The fFindStringInMultiSZ function is used to determine if string exists in a REG_MULTI_SZ string list and return entire string. This utility function is used to construct an integrated link service configuration DLL.

BOOL fFindString(
  LPSTR szStringBuffer,
  LPSTR szSearchString,
  LPSTR szFoundString
);

Parameters

szStringBuffer
This supplied parameter specifies the string buffer to search.
szSearchString
This supplied parameter specifies the string to search for.
szFoundString
This supplied and returned parameter specifies the full string containing string if successful.

Return Values

true
The string was found and returned.
false
The string was not found.