Windows: Native launcher now works with unicode.

The native launcher can now launch Java and Bash binary in
directory with non-English characters.

Unfortunately, python doesn't support running python zip file under
directory with non-English characters. eg. python ./??/bin.zip will
still fail.

See https://github.com/bazelbuild/bazel/issues/4473

Change-Id: I77fe9cdaabffc2e0d25c7097da5c0c9333a9c4a3
PiperOrigin-RevId: 201939391
diff --git a/src/main/cpp/util/path_platform.h b/src/main/cpp/util/path_platform.h
index e2efe09..b0fb88d 100644
--- a/src/main/cpp/util/path_platform.h
+++ b/src/main/cpp/util/path_platform.h
@@ -70,7 +70,12 @@
 // is that this would add more complexity to the implementation file(s)? of
 // path.h, which would have to have the platform-specific implementations.
 #if defined(_WIN32) || defined(__CYGWIN__)
+bool IsDevNull(const wchar_t *path);
+
+bool IsAbsolute(const std::wstring &path);
+
 const wchar_t *RemoveUncPrefixMaybe(const wchar_t *ptr);
+
 void AddUncPrefixMaybe(std::wstring *path);
 
 std::pair<std::wstring, std::wstring> SplitPathW(const std::wstring &path);