I'm creating a custom Visual Studio editor and am currently trying to enable find and replace.
In the IVsFindTarget.Find method it says to return __VSFINDRESULT.Found and I'm assuming __VSFINDRESULT.AndReplace flags when a find and replace request it called. The issue is that AndReplace is defined:
VSFR_AndReplace = -2147483648
But the documentation says:
Returned in combination with Found or NotFound
VSFR_AndReplace is not a valid uint. How could I return a combination of the two?