From: Peter Åstrand Date: Tue, 9 Dec 2008 11:20:39 +0000 (+0000) Subject: MinGW tweak: Like last patch, use __rfbmax/__rfbmin. X-Git-Tag: v0.0.90~328 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8ebd542124a6172336b8955f7f969dd99a06c515;p=tigervnc.git MinGW tweak: Like last patch, use __rfbmax/__rfbmin. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3338 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- diff --git a/win/rfb_win32/SDisplayCorePolling.cxx b/win/rfb_win32/SDisplayCorePolling.cxx index fc57ecd0..510ffb1f 100644 --- a/win/rfb_win32/SDisplayCorePolling.cxx +++ b/win/rfb_win32/SDisplayCorePolling.cxx @@ -20,6 +20,7 @@ #include #include +#include using namespace rfb; using namespace rfb::win32; @@ -33,7 +34,7 @@ const int SDisplayCorePolling::pollTimerId = 1; SDisplayCorePolling::SDisplayCorePolling(SDisplay* d, UpdateTracker* ut, int pollInterval_) : MsgWindow(_T("rfb::win32::SDisplayCorePolling")), updateTracker(ut), pollTimer(getHandle(), pollTimerId), pollNextStrip(false), display(d) { - pollInterval = max(10, (pollInterval_ / POLLING_SEGMENTS)); + pollInterval = __rfbmax(10, (pollInterval_ / POLLING_SEGMENTS)); copyrect.setUpdateTracker(ut); } @@ -74,7 +75,7 @@ void SDisplayCorePolling::flushUpdates() { // No. Poll the next section pollrect.tl.y = pollNextY; pollNextY += pollIncrementY; - pollrect.br.y = min(pollNextY, pollrect.br.y); + pollrect.br.y = __rfbmin(pollNextY, pollrect.br.y); updateTracker->add_changed(pollrect); } }