| 371 | } |
| 372 | |
| 373 | Local<String> GuidToJs(::Platform::Guid guid) { |
| 374 | OLECHAR* bstrGuid; |
| 375 | StringFromCLSID(guid, &bstrGuid); |
| 376 | |
| 377 | Local<String> strVal = NewString(bstrGuid); |
| 378 | CoTaskMemFree(bstrGuid); |
| 379 | return strVal; |
| 380 | } |
| 381 | |
| 382 | Local<Object> ColorToJs(::Windows::UI::Color color) { |
| 383 | EscapableHandleScope scope; |
nothing calls this directly
no test coverage detected