Searched refs:narrowPathLength (Results 1 – 1 of 1) sorted by relevance
/third_party/vulkan-loader/loader/ |
D | loader_windows.c | 1045 int narrowPathLength = WideCharToMultiByte(CP_ACP, 0, path, -1, NULL, 0, NULL, NULL); in windows_get_app_package_manifest_path() local 1046 if (narrowPathLength == 0) { in windows_get_app_package_manifest_path() 1052 ret = loader_instance_heap_alloc(inst, narrowPathLength, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); in windows_get_app_package_manifest_path() 1058 narrowPathLength = WideCharToMultiByte(CP_ACP, 0, path, -1, ret, narrowPathLength, NULL, NULL); in windows_get_app_package_manifest_path() 1059 assert((size_t)narrowPathLength == strlen(ret) + 1); in windows_get_app_package_manifest_path()
|