I want to compare a LPCWSTR with a value to ensure they're equal. And I can't figure out how to compare it. I create a STRING value and tried various conversions but nothing worked. Essentially it would be:
request->id // some LPCWSTR value
STRING str = "value" // String value I want to compare
if (request->id != str)
{
//Something
}