12345678910111213141516171819202122232425262728 |
- #ifndef BASE_WIN_HSTRING_COMPARE_H_
- #define BASE_WIN_HSTRING_COMPARE_H_
- #include <hstring.h>
- #include "base/base_export.h"
- namespace base {
- namespace win {
- BASE_EXPORT HRESULT HStringCompare(HSTRING string1,
- HSTRING string2,
- INT32* result);
- }
- }
- #endif
|