| 698 | } |
| 699 | |
| 700 | Local<String> JsStringFromChar(wchar_t value) { |
| 701 | wchar_t str[2]; |
| 702 | str[0] = value; |
| 703 | str[1] = L'\0'; |
| 704 | |
| 705 | return NewString(str); |
| 706 | } |
| 707 | |
| 708 | ::Windows::Foundation::HResult HResultFromJsInt32(int32_t value) { |
| 709 | ::Windows::Foundation::HResult res; |
nothing calls this directly
no test coverage detected