diff options
author | David Robillard <d@drobilla.net> | 2020-05-16 21:18:00 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-05-16 21:18:00 +0200 |
commit | a4ac15c1ee94e3a41f2bd799f6d1779428109a76 (patch) | |
tree | 2ae131e1ea45eca3f518496fba225397159469ea /pugl/detail/win.c | |
parent | ceded7cf5ec0e2bbd140899ea7d5169d7fc30a51 (diff) | |
download | pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.tar.gz pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.tar.bz2 pugl-a4ac15c1ee94e3a41f2bd799f6d1779428109a76.zip |
Use line comments where appropriate
Diffstat (limited to 'pugl/detail/win.c')
-rw-r--r-- | pugl/detail/win.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/win.c b/pugl/detail/win.c index ae7e7fb..76df1b4 100644 --- a/pugl/detail/win.c +++ b/pugl/detail/win.c @@ -343,7 +343,7 @@ initScrollEvent(PuglEvent* event, PuglView* view, LPARAM lParam) event->scroll.dy = 0; } -/** Return the code point for buf, or the replacement character on error. */ +/// Return the code point for buf, or the replacement character on error static uint32_t puglDecodeUTF16(const wchar_t* buf, const int len) { |