obs-windows.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. /******************************************************************************
  2. Copyright (C) 2013 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #include "util/windows/win-version.h"
  15. #include "util/platform.h"
  16. #include "util/dstr.h"
  17. #include "obs.h"
  18. #include "obs-internal.h"
  19. #include <windows.h>
  20. static uint32_t win_ver = 0;
  21. const char *get_module_extension(void)
  22. {
  23. return ".dll";
  24. }
  25. #ifdef _WIN64
  26. #define BIT_STRING "64bit"
  27. #else
  28. #define BIT_STRING "32bit"
  29. #endif
  30. static const char *module_bin[] = {
  31. "obs-plugins/" BIT_STRING,
  32. "../../obs-plugins/" BIT_STRING,
  33. };
  34. static const char *module_data[] = {
  35. "data/%module%",
  36. "../../data/obs-plugins/%module%"
  37. };
  38. static const int module_patterns_size =
  39. sizeof(module_bin)/sizeof(module_bin[0]);
  40. void add_default_module_paths(void)
  41. {
  42. for (int i = 0; i < module_patterns_size; i++)
  43. obs_add_module_path(module_bin[i], module_data[i]);
  44. }
  45. /* on windows, points to [base directory]/data/libobs */
  46. char *find_libobs_data_file(const char *file)
  47. {
  48. struct dstr path;
  49. dstr_init(&path);
  50. if (check_path(file, "data/libobs/", &path))
  51. return path.array;
  52. if (check_path(file, "../../data/libobs/", &path))
  53. return path.array;
  54. dstr_free(&path);
  55. return NULL;
  56. }
  57. static void log_processor_info(void)
  58. {
  59. HKEY key;
  60. wchar_t data[1024];
  61. char *str = NULL;
  62. DWORD size, speed;
  63. LSTATUS status;
  64. memset(data, 0, 1024);
  65. status = RegOpenKeyW(HKEY_LOCAL_MACHINE,
  66. L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0",
  67. &key);
  68. if (status != ERROR_SUCCESS)
  69. return;
  70. size = 1024;
  71. status = RegQueryValueExW(key, L"ProcessorNameString", NULL, NULL,
  72. (LPBYTE)data, &size);
  73. if (status == ERROR_SUCCESS) {
  74. os_wcs_to_utf8_ptr(data, 0, &str);
  75. blog(LOG_INFO, "CPU Name: %s", str);
  76. bfree(str);
  77. }
  78. size = sizeof(speed);
  79. status = RegQueryValueExW(key, L"~MHz", NULL, NULL, (LPBYTE)&speed,
  80. &size);
  81. if (status == ERROR_SUCCESS)
  82. blog(LOG_INFO, "CPU Speed: %ldMHz", speed);
  83. RegCloseKey(key);
  84. }
  85. static DWORD num_logical_cores(ULONG_PTR mask)
  86. {
  87. DWORD left_shift = sizeof(ULONG_PTR) * 8 - 1;
  88. DWORD bit_set_count = 0;
  89. ULONG_PTR bit_test = (ULONG_PTR)1 << left_shift;
  90. for (DWORD i = 0; i <= left_shift; ++i) {
  91. bit_set_count += ((mask & bit_test) ? 1 : 0);
  92. bit_test /= 2;
  93. }
  94. return bit_set_count;
  95. }
  96. static void log_processor_cores(void)
  97. {
  98. PSYSTEM_LOGICAL_PROCESSOR_INFORMATION info = NULL, temp = NULL;
  99. DWORD len = 0;
  100. GetLogicalProcessorInformation(info, &len);
  101. if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
  102. return;
  103. info = malloc(len);
  104. if (GetLogicalProcessorInformation(info, &len)) {
  105. DWORD num = len / sizeof(*info);
  106. int physical_cores = 0;
  107. int logical_cores = 0;
  108. temp = info;
  109. for (DWORD i = 0; i < num; i++) {
  110. if (temp->Relationship == RelationProcessorCore) {
  111. ULONG_PTR mask = temp->ProcessorMask;
  112. physical_cores++;
  113. logical_cores += num_logical_cores(mask);
  114. }
  115. temp++;
  116. }
  117. blog(LOG_INFO, "Physical Cores: %d, Logical Cores: %d",
  118. physical_cores, logical_cores);
  119. }
  120. free(info);
  121. }
  122. static void log_available_memory(void)
  123. {
  124. MEMORYSTATUS ms;
  125. GlobalMemoryStatus(&ms);
  126. #ifdef _WIN64
  127. const char *note = "";
  128. #else
  129. const char *note = " (NOTE: 4 gigs max is normal for 32bit programs)";
  130. #endif
  131. blog(LOG_INFO, "Physical Memory: %luMB Total, %luMB Free%s",
  132. (DWORD)(ms.dwTotalPhys / 1048576),
  133. (DWORD)(ms.dwAvailPhys / 1048576),
  134. note);
  135. }
  136. static void log_windows_version(void)
  137. {
  138. struct win_version_info ver;
  139. get_win_ver(&ver);
  140. blog(LOG_INFO, "Windows Version: %d.%d Build %d (revision: %d)",
  141. ver.major, ver.minor, ver.build, ver.revis);
  142. }
  143. typedef HRESULT (WINAPI *dwm_is_composition_enabled_t)(BOOL*);
  144. static void log_aero(void)
  145. {
  146. dwm_is_composition_enabled_t composition_enabled = NULL;
  147. const char *aeroMessage = win_ver >= 0x602 ?
  148. " (Aero is always on for windows 8 and above)" : "";
  149. HMODULE dwm = LoadLibraryW(L"dwmapi");
  150. BOOL bComposition = true;
  151. if (!dwm) {
  152. return;
  153. }
  154. composition_enabled = (dwm_is_composition_enabled_t)GetProcAddress(dwm,
  155. "DwmIsCompositionEnabled");
  156. if (!composition_enabled) {
  157. return;
  158. }
  159. composition_enabled(&bComposition);
  160. blog(LOG_INFO, "Aero is %s%s", bComposition ? "Enabled" : "Disabled",
  161. aeroMessage);
  162. }
  163. void log_system_info(void)
  164. {
  165. struct win_version_info ver;
  166. get_win_ver(&ver);
  167. win_ver = (ver.major << 8) | ver.minor;
  168. log_processor_info();
  169. log_processor_cores();
  170. log_available_memory();
  171. log_windows_version();
  172. log_aero();
  173. }
  174. struct obs_hotkeys_platform {
  175. int vk_codes[OBS_KEY_LAST_VALUE];
  176. };
  177. static int get_virtual_key(obs_key_t key)
  178. {
  179. switch (key) {
  180. case OBS_KEY_RETURN: return VK_RETURN;
  181. case OBS_KEY_ESCAPE: return VK_ESCAPE;
  182. case OBS_KEY_TAB: return VK_TAB;
  183. case OBS_KEY_BACKTAB: return VK_OEM_BACKTAB;
  184. case OBS_KEY_BACKSPACE: return VK_BACK;
  185. case OBS_KEY_INSERT: return VK_INSERT;
  186. case OBS_KEY_DELETE: return VK_DELETE;
  187. case OBS_KEY_PAUSE: return VK_PAUSE;
  188. case OBS_KEY_PRINT: return VK_SNAPSHOT;
  189. case OBS_KEY_CLEAR: return VK_CLEAR;
  190. case OBS_KEY_HOME: return VK_HOME;
  191. case OBS_KEY_END: return VK_END;
  192. case OBS_KEY_LEFT: return VK_LEFT;
  193. case OBS_KEY_UP: return VK_UP;
  194. case OBS_KEY_RIGHT: return VK_RIGHT;
  195. case OBS_KEY_DOWN: return VK_DOWN;
  196. case OBS_KEY_PAGEUP: return VK_PRIOR;
  197. case OBS_KEY_PAGEDOWN: return VK_NEXT;
  198. case OBS_KEY_SHIFT: return VK_SHIFT;
  199. case OBS_KEY_CONTROL: return VK_CONTROL;
  200. case OBS_KEY_ALT: return VK_MENU;
  201. case OBS_KEY_CAPSLOCK: return VK_CAPITAL;
  202. case OBS_KEY_NUMLOCK: return VK_NUMLOCK;
  203. case OBS_KEY_SCROLLLOCK: return VK_SCROLL;
  204. case OBS_KEY_F1: return VK_F1;
  205. case OBS_KEY_F2: return VK_F2;
  206. case OBS_KEY_F3: return VK_F3;
  207. case OBS_KEY_F4: return VK_F4;
  208. case OBS_KEY_F5: return VK_F5;
  209. case OBS_KEY_F6: return VK_F6;
  210. case OBS_KEY_F7: return VK_F7;
  211. case OBS_KEY_F8: return VK_F8;
  212. case OBS_KEY_F9: return VK_F9;
  213. case OBS_KEY_F10: return VK_F10;
  214. case OBS_KEY_F11: return VK_F11;
  215. case OBS_KEY_F12: return VK_F12;
  216. case OBS_KEY_F13: return VK_F13;
  217. case OBS_KEY_F14: return VK_F14;
  218. case OBS_KEY_F15: return VK_F15;
  219. case OBS_KEY_F16: return VK_F16;
  220. case OBS_KEY_F17: return VK_F17;
  221. case OBS_KEY_F18: return VK_F18;
  222. case OBS_KEY_F19: return VK_F19;
  223. case OBS_KEY_F20: return VK_F20;
  224. case OBS_KEY_F21: return VK_F21;
  225. case OBS_KEY_F22: return VK_F22;
  226. case OBS_KEY_F23: return VK_F23;
  227. case OBS_KEY_F24: return VK_F24;
  228. case OBS_KEY_SPACE: return VK_SPACE;
  229. case OBS_KEY_APOSTROPHE: return VK_OEM_7;
  230. case OBS_KEY_PLUS: return VK_OEM_PLUS;
  231. case OBS_KEY_COMMA: return VK_OEM_COMMA;
  232. case OBS_KEY_MINUS: return VK_OEM_MINUS;
  233. case OBS_KEY_PERIOD: return VK_OEM_PERIOD;
  234. case OBS_KEY_SLASH: return VK_OEM_2;
  235. case OBS_KEY_0: return '0';
  236. case OBS_KEY_1: return '1';
  237. case OBS_KEY_2: return '2';
  238. case OBS_KEY_3: return '3';
  239. case OBS_KEY_4: return '4';
  240. case OBS_KEY_5: return '5';
  241. case OBS_KEY_6: return '6';
  242. case OBS_KEY_7: return '7';
  243. case OBS_KEY_8: return '8';
  244. case OBS_KEY_9: return '9';
  245. case OBS_KEY_NUMASTERISK: return VK_MULTIPLY;
  246. case OBS_KEY_NUMPLUS: return VK_ADD;
  247. case OBS_KEY_NUMMINUS: return VK_SUBTRACT;
  248. case OBS_KEY_NUMPERIOD: return VK_DECIMAL;
  249. case OBS_KEY_NUMSLASH: return VK_DIVIDE;
  250. case OBS_KEY_NUM0: return VK_NUMPAD0;
  251. case OBS_KEY_NUM1: return VK_NUMPAD1;
  252. case OBS_KEY_NUM2: return VK_NUMPAD2;
  253. case OBS_KEY_NUM3: return VK_NUMPAD3;
  254. case OBS_KEY_NUM4: return VK_NUMPAD4;
  255. case OBS_KEY_NUM5: return VK_NUMPAD5;
  256. case OBS_KEY_NUM6: return VK_NUMPAD6;
  257. case OBS_KEY_NUM7: return VK_NUMPAD7;
  258. case OBS_KEY_NUM8: return VK_NUMPAD8;
  259. case OBS_KEY_NUM9: return VK_NUMPAD9;
  260. case OBS_KEY_SEMICOLON: return VK_OEM_1;
  261. case OBS_KEY_A: return 'A';
  262. case OBS_KEY_B: return 'B';
  263. case OBS_KEY_C: return 'C';
  264. case OBS_KEY_D: return 'D';
  265. case OBS_KEY_E: return 'E';
  266. case OBS_KEY_F: return 'F';
  267. case OBS_KEY_G: return 'G';
  268. case OBS_KEY_H: return 'H';
  269. case OBS_KEY_I: return 'I';
  270. case OBS_KEY_J: return 'J';
  271. case OBS_KEY_K: return 'K';
  272. case OBS_KEY_L: return 'L';
  273. case OBS_KEY_M: return 'M';
  274. case OBS_KEY_N: return 'N';
  275. case OBS_KEY_O: return 'O';
  276. case OBS_KEY_P: return 'P';
  277. case OBS_KEY_Q: return 'Q';
  278. case OBS_KEY_R: return 'R';
  279. case OBS_KEY_S: return 'S';
  280. case OBS_KEY_T: return 'T';
  281. case OBS_KEY_U: return 'U';
  282. case OBS_KEY_V: return 'V';
  283. case OBS_KEY_W: return 'W';
  284. case OBS_KEY_X: return 'X';
  285. case OBS_KEY_Y: return 'Y';
  286. case OBS_KEY_Z: return 'Z';
  287. case OBS_KEY_BRACKETLEFT: return VK_OEM_4;
  288. case OBS_KEY_BACKSLASH: return VK_OEM_5;
  289. case OBS_KEY_BRACKETRIGHT: return VK_OEM_6;
  290. case OBS_KEY_ASCIITILDE: return VK_OEM_3;
  291. case OBS_KEY_KANJI: return VK_KANJI;
  292. case OBS_KEY_TOUROKU: return VK_OEM_FJ_TOUROKU;
  293. case OBS_KEY_MASSYO: return VK_OEM_FJ_MASSHOU;
  294. case OBS_KEY_HANGUL: return VK_HANGUL;
  295. case OBS_KEY_MOUSE1: return VK_LBUTTON;
  296. case OBS_KEY_MOUSE2: return VK_RBUTTON;
  297. case OBS_KEY_MOUSE3: return VK_MBUTTON;
  298. case OBS_KEY_MOUSE4: return VK_XBUTTON1;
  299. case OBS_KEY_MOUSE5: return VK_XBUTTON2;
  300. /* TODO: Implement keys for non-US keyboards */
  301. default:;
  302. }
  303. return 0;
  304. }
  305. bool obs_hotkeys_platform_init(struct obs_core_hotkeys *hotkeys)
  306. {
  307. hotkeys->platform_context = bzalloc(sizeof(obs_hotkeys_platform_t));
  308. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++)
  309. hotkeys->platform_context->vk_codes[i] = get_virtual_key(i);
  310. return true;
  311. }
  312. void obs_hotkeys_platform_free(struct obs_core_hotkeys *hotkeys)
  313. {
  314. bfree(hotkeys->platform_context);
  315. hotkeys->platform_context = NULL;
  316. }
  317. static bool vk_down(DWORD vk)
  318. {
  319. short state = GetAsyncKeyState(vk);
  320. bool down = (state & 0x8000) != 0;
  321. bool was_down = (state & 0x1) != 0;
  322. return down || was_down;
  323. }
  324. bool obs_hotkeys_platform_is_pressed(obs_hotkeys_platform_t *context,
  325. obs_key_t key)
  326. {
  327. if (key == OBS_KEY_META) {
  328. return vk_down(VK_LWIN) || vk_down(VK_RWIN);
  329. }
  330. UNUSED_PARAMETER(context);
  331. return vk_down(obs_key_to_virtual_key(key));
  332. }
  333. void obs_key_to_str(obs_key_t key, struct dstr *str)
  334. {
  335. wchar_t name[128] = L"";
  336. UINT scan_code;
  337. int vk;
  338. if (key == OBS_KEY_NONE) {
  339. return;
  340. } else if (key >= OBS_KEY_MOUSE1 && key <= OBS_KEY_MOUSE29) {
  341. if (obs->hotkeys.translations[key]) {
  342. dstr_copy(str, obs->hotkeys.translations[key]);
  343. } else {
  344. dstr_printf(str, "Mouse %d",
  345. (int)(key - OBS_KEY_MOUSE1 + 1));
  346. }
  347. return;
  348. } if (key == OBS_KEY_PAUSE) {
  349. dstr_copy(str, obs_get_hotkey_translation(key, "Pause"));
  350. return;
  351. } else if (key == OBS_KEY_META) {
  352. dstr_copy(str, obs_get_hotkey_translation(key, "Windows"));
  353. return;
  354. }
  355. vk = obs_key_to_virtual_key(key);
  356. scan_code = MapVirtualKey(vk, 0) << 16;
  357. switch (vk) {
  358. case VK_HOME:
  359. case VK_END:
  360. case VK_LEFT:
  361. case VK_UP:
  362. case VK_RIGHT:
  363. case VK_DOWN:
  364. case VK_PRIOR:
  365. case VK_NEXT:
  366. case VK_INSERT:
  367. case VK_DELETE:
  368. case VK_NUMLOCK:
  369. scan_code |= 0x01000000;
  370. }
  371. if (scan_code != 0 && GetKeyNameTextW(scan_code, name, 128) != 0) {
  372. dstr_from_wcs(str, name);
  373. } else if (key != OBS_KEY_NONE) {
  374. dstr_copy(str, obs_key_to_name(key));
  375. }
  376. }
  377. obs_key_t obs_key_from_virtual_key(int code)
  378. {
  379. obs_hotkeys_platform_t *platform = obs->hotkeys.platform_context;
  380. for (size_t i = 0; i < OBS_KEY_LAST_VALUE; i++) {
  381. if (platform->vk_codes[i] == code) {
  382. return (obs_key_t)i;
  383. }
  384. }
  385. return OBS_KEY_NONE;
  386. }
  387. int obs_key_to_virtual_key(obs_key_t key)
  388. {
  389. if (key == OBS_KEY_META)
  390. return VK_LWIN;
  391. return obs->hotkeys.platform_context->vk_codes[(int)key];
  392. }
  393. static inline void add_combo_key(obs_key_t key, struct dstr *str)
  394. {
  395. struct dstr key_str = {0};
  396. obs_key_to_str(key, &key_str);
  397. if (!dstr_is_empty(&key_str)) {
  398. if (!dstr_is_empty(str)) {
  399. dstr_cat(str, " + ");
  400. }
  401. dstr_cat_dstr(str, &key_str);
  402. }
  403. dstr_free(&key_str);
  404. }
  405. void obs_key_combination_to_str(obs_key_combination_t combination,
  406. struct dstr *str)
  407. {
  408. if ((combination.modifiers & INTERACT_CONTROL_KEY) != 0) {
  409. add_combo_key(OBS_KEY_CONTROL, str);
  410. }
  411. if ((combination.modifiers & INTERACT_COMMAND_KEY) != 0) {
  412. add_combo_key(OBS_KEY_META, str);
  413. }
  414. if ((combination.modifiers & INTERACT_ALT_KEY) != 0) {
  415. add_combo_key(OBS_KEY_ALT, str);
  416. }
  417. if ((combination.modifiers & INTERACT_SHIFT_KEY) != 0) {
  418. add_combo_key(OBS_KEY_SHIFT, str);
  419. }
  420. if (combination.key != OBS_KEY_NONE) {
  421. add_combo_key(combination.key, str);
  422. }
  423. }
  424. static char *get_abs_path(const char *path)
  425. {
  426. wchar_t wpath[512];
  427. wchar_t wabspath[512];
  428. char *abspath = NULL;
  429. size_t len;
  430. len = os_utf8_to_wcs(path, 0, wpath, 512);
  431. if (!len)
  432. return NULL;
  433. if (_wfullpath(wabspath, wpath, 512) != NULL)
  434. os_wcs_to_utf8_ptr(wabspath, 0, &abspath);
  435. return abspath;
  436. }
  437. bool sym_initialize_called = false;
  438. void reset_win32_symbol_paths(void)
  439. {
  440. static BOOL (WINAPI *sym_initialize_w)(HANDLE, const wchar_t*, BOOL);
  441. static BOOL (WINAPI *sym_set_search_path_w)(HANDLE, const wchar_t*);
  442. static bool funcs_initialized = false;
  443. static bool initialize_success = false;
  444. struct obs_module *module = obs->first_module;
  445. struct dstr path_str = {0};
  446. DARRAY(char*) paths;
  447. wchar_t *path_str_w = NULL;
  448. char *abspath;
  449. da_init(paths);
  450. if (!funcs_initialized) {
  451. HMODULE mod;
  452. funcs_initialized = true;
  453. mod = LoadLibraryW(L"DbgHelp");
  454. if (!mod)
  455. return;
  456. sym_initialize_w = (void*)GetProcAddress(mod, "SymInitializeW");
  457. sym_set_search_path_w = (void*)GetProcAddress(mod,
  458. "SymSetSearchPathW");
  459. if (!sym_initialize_w || !sym_set_search_path_w)
  460. return;
  461. initialize_success = true;
  462. }
  463. if (!initialize_success)
  464. return;
  465. abspath = get_abs_path(".");
  466. if (abspath)
  467. da_push_back(paths, &abspath);
  468. while (module) {
  469. bool found = false;
  470. struct dstr path = {0};
  471. char *path_end;
  472. dstr_copy(&path, module->bin_path);
  473. dstr_replace(&path, "/", "\\");
  474. path_end = strrchr(path.array, '\\');
  475. if (!path_end) {
  476. module = module->next;
  477. dstr_free(&path);
  478. continue;
  479. }
  480. *path_end = 0;
  481. for (size_t i = 0; i < paths.num; i++) {
  482. const char *existing_path = paths.array[i];
  483. if (astrcmpi(path.array, existing_path) == 0) {
  484. found = true;
  485. break;
  486. }
  487. }
  488. if (!found) {
  489. abspath = get_abs_path(path.array);
  490. if (abspath)
  491. da_push_back(paths, &abspath);
  492. }
  493. dstr_free(&path);
  494. module = module->next;
  495. }
  496. for (size_t i = 0; i < paths.num; i++) {
  497. const char *path = paths.array[i];
  498. if (path && *path) {
  499. if (i != 0)
  500. dstr_cat(&path_str, ";");
  501. dstr_cat(&path_str, paths.array[i]);
  502. }
  503. }
  504. if (path_str.array) {
  505. os_utf8_to_wcs_ptr(path_str.array, path_str.len, &path_str_w);
  506. if (path_str_w) {
  507. if (!sym_initialize_called) {
  508. sym_initialize_w(GetCurrentProcess(),
  509. path_str_w, false);
  510. sym_initialize_called = true;
  511. } else {
  512. sym_set_search_path_w(GetCurrentProcess(),
  513. path_str_w);
  514. }
  515. bfree(path_str_w);
  516. }
  517. }
  518. for (size_t i = 0; i < paths.num; i++)
  519. bfree(paths.array[i]);
  520. dstr_free(&path_str);
  521. da_free(paths);
  522. }
  523. void initialize_com(void)
  524. {
  525. CoInitializeEx(0, COINIT_MULTITHREADED);
  526. }
  527. void uninitialize_com(void)
  528. {
  529. CoUninitialize();
  530. }