diff options
author | David Robillard <d@drobilla.net> | 2014-08-27 23:32:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-27 23:32:26 +0000 |
commit | d0c878fe0e496083a1e892795c23a1ac939714a9 (patch) | |
tree | 6a70e0fbd68726357a8b008ecd2bba1d3062e6b1 /pugl/pugl_win.cpp | |
parent | b4dbb3616865cd236cda4f2e4ac806b3b4840b29 (diff) |
Event-based dispatch.
Diffstat (limited to 'pugl/pugl_win.cpp')
-rw-r--r-- | pugl/pugl_win.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index a458bee..9dfa70c 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -358,6 +358,12 @@ handleMessage(PuglView* view, UINT message, WPARAM wParam, LPARAM lParam) return 0; } +void +puglGrabFocus(PuglView* view) +{ + // TODO +} + PuglStatus puglProcessEvents(PuglView* view) { |