| 281 | |
| 282 | template <typename ReturnType> |
| 283 | ReturnType MakeRequest(const FontQueryRequest& request) |
| 284 | { |
| 285 | auto pipe = OpenPipe(); |
| 286 | |
| 287 | // send |
| 288 | SendRequst(pipe, request); |
| 289 | |
| 290 | // recv |
| 291 | return FetchResponse<ReturnType>(pipe); |
| 292 | } |
| 293 | |
| 294 | FontQueryResponse QueryFont(const wchar_t* str) |
| 295 | { |
nothing calls this directly
no test coverage detected