diff options
author | David Robillard <d@drobilla.net> | 2015-09-12 19:45:02 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-09-12 19:45:02 -0400 |
commit | 809ead2220f5a9ed66f88b1ae84a93e334e2717f (patch) | |
tree | 64ef3ffc307e8d6b8847e2daf878e6e2997bb87d /pugl/pugl_win.cpp | |
parent | 6b4a5a128ef5d87374dfef017cd20e069c068a4b (diff) | |
download | pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.tar.gz pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.tar.bz2 pugl-809ead2220f5a9ed66f88b1ae84a93e334e2717f.zip |
Add puglWaitForEvent for blocking main loops.
Diffstat (limited to 'pugl/pugl_win.cpp')
-rw-r--r-- | pugl/pugl_win.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index 04bc4b6..850947d 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -425,6 +425,13 @@ puglGrabFocus(PuglView* view) } PuglStatus +puglWaitForEvent(PuglView* view) +{ + WaitMessage(); + return PUGL_SUCCESS; +} + +PuglStatus puglProcessEvents(PuglView* view) { MSG msg; |