This allows get_window_exe to be used with other .c files in the module.
@@ -68,7 +68,7 @@ static inline HANDLE open_process(DWORD desired_access, bool inherit_handle,
return open_process_proc(desired_access, inherit_handle, process_id);
}
-static bool get_window_exe(struct dstr *name, HWND window)
+bool get_window_exe(struct dstr *name, HWND window)
{
wchar_t wname[MAX_PATH];
struct dstr temp = {0};
@@ -1,5 +1,7 @@
#pragma once
+#include <util/dstr.h>
+
enum window_priority {
WINDOW_PRIORITY_CLASS,
WINDOW_PRIORITY_TITLE,
@@ -11,6 +13,8 @@ enum window_search_mode {
EXCLUDE_MINIMIZED
};
+extern bool get_window_exe(struct dstr *name, HWND window);
extern void fill_window_list(obs_property_t *p, enum window_search_mode mode);
extern void build_window_strings(const char *str,