PREfast Warning 324 (Windows CE 5.0)
324 - Potential incorrect use of strcpy.
Question: Did you intend to use strcmp?
This message indicates that strcpy was used where strcmp should have been used.
Example
Defective Source
(strcpy (name, "dipa") == 0)
Corrected Source
(strcmp (name, "dipa") == 0)
Send Feedback on this topic to the authors