MRUCMPPROC callback function
Used to determine whether an item is present in a most recently used (MRU) list.
int CALLBACK MRUCMPPROC(
LPCTSTR pString1,
LPCTSTR pString2
);
pString1
Type: LPCTSTRThe first string.
pString2
Type: LPCTSTRA second string to compare to the first.
Type: int
Returns 0 if the items are identical, a nonzero value otherwise.
This function can be optionally specified for use in the MRUINFO structure passed to CreateMRUListW. This is useful when the MRU list was created with the MRU_BINARY flag. When this function is not specified, standard string comparison functions are used.
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Unicode and ANSI names |
MRUCMPPROCW (Unicode) and MRUCMPPROCA (ANSI) |