String<-> WCHAR conversion

How does one convert JUCE String to the Windows type WCHAR (which is used by some Windows functions) and back from WCHAR to JUCE String?

WCHAR is the same as a juce wide char, so just cast it.

Purrfect!