| 362 | } |
| 363 | |
| 364 | ::Platform::Guid GuidFromJs(Local<Value> value) { |
| 365 | GUID guid; |
| 366 | if (!StrToGuid(value, &guid)) { |
| 367 | return ::Platform::Guid(); |
| 368 | } |
| 369 | |
| 370 | return ::Platform::Guid(guid); |
| 371 | } |
| 372 | |
| 373 | Local<String> GuidToJs(::Platform::Guid guid) { |
| 374 | OLECHAR* bstrGuid; |
nothing calls this directly
no test coverage detected