| 588 | } |
| 589 | |
| 590 | static char *NarrowString(WCHAR *s) |
| 591 | { |
| 592 | int cchNarrow = WideCharToMultiByte(CP_ACP, 0, s, -1, NULL, 0, NULL, NULL); |
| 593 | char *ret = (char *)malloc(cchNarrow); |
| 594 | if (ret) |
| 595 | WideCharToMultiByte(CP_ACP, 0, s, -1, ret, cchNarrow, NULL, NULL); |
| 596 | return ret; |
| 597 | } |
| 598 | |
| 599 | // Couple of helpers for the service manager |
| 600 | static void PyService_InitPython() |
no outgoing calls
no test coverage detected