diff options
author | Dan Gudmundsson <[email protected]> | 2015-12-04 12:13:50 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-12-04 12:13:50 +0100 |
commit | 8fa96128d4a02019463d566e635f774e3fca7c67 (patch) | |
tree | 7fd5088d21b5b85edf4e278af785832dd1315433 /lib/wx/c_src/wxe_helpers.h | |
parent | 2c2c82d71dd038b347674c31e6b117bc0fec8e2b (diff) | |
parent | 7a13283ac6f4a7738dbe2a2ccfce392a820dca2a (diff) | |
download | otp-8fa96128d4a02019463d566e635f774e3fca7c67.tar.gz otp-8fa96128d4a02019463d566e635f774e3fca7c67.tar.bz2 otp-8fa96128d4a02019463d566e635f774e3fca7c67.zip |
Merge branch 'maint'
* maint:
wx: Fix some function specifications
wx: Remove call to disconnect_impl from server
wx: Add a command queue check after event sent to erlang
wx: Make wxPostScriptDC optional
wx: Add wxOverlay
wx: Use only one ring buffer for command queue
Diffstat (limited to 'lib/wx/c_src/wxe_helpers.h')
-rw-r--r-- | lib/wx/c_src/wxe_helpers.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/wx/c_src/wxe_helpers.h b/lib/wx/c_src/wxe_helpers.h index 4f9d9ca9c3..ff949e332b 100644 --- a/lib/wx/c_src/wxe_helpers.h +++ b/lib/wx/c_src/wxe_helpers.h @@ -67,9 +67,13 @@ class wxeFifo { void Append(wxeCommand *Other); wxeCommand * Get(); + wxeCommand * Peek(unsigned int *item); void Realloc(); + void Strip(); + unsigned int Cleanup(unsigned int peek=0); + unsigned int cb_start; unsigned int m_max; unsigned int m_first; unsigned int m_n; |