summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-11-07 03:05:12 +0100
committerDudemanguy <random342@airmail.cc>2023-11-08 04:32:10 +0000
commita5c32ea52e6f943a4221f6f18239510502d9b3e4 (patch)
treeba6f1ad7572f87b3325524b75f09859675469191 /osdep
parent2ae56e78dd00bae6cd3078b574e2a2bb31962019 (diff)
downloadmpv-a5c32ea52e6f943a4221f6f18239510502d9b3e4.tar.bz2
mpv-a5c32ea52e6f943a4221f6f18239510502d9b3e4.tar.xz
threads-win32: add comment about local decl of a function
Diffstat (limited to 'osdep')
-rw-r--r--osdep/threads-win32.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/osdep/threads-win32.h b/osdep/threads-win32.h
index bfd17095ae..dbce353a92 100644
--- a/osdep/threads-win32.h
+++ b/osdep/threads-win32.h
@@ -195,6 +195,7 @@ static inline int mp_thread_detach(mp_thread thread)
#define mp_thread_id_equal(a, b) ((a) == (b))
#define mp_thread_get_id(thread) GetThreadId(thread)
+// declared in io.h, which we don't want to pull in everywhere
wchar_t *mp_from_utf8(void *talloc_ctx, const char *s);
static inline void mp_thread_set_name(const char *name)
{