+ prefix = m_prefix;
+ } // Unlock m_csUpdate to allow the main thread to call our
+ // UpdateStringsFromCompleter() without blocking while we are
+ // generating completions.
+
+ // Notice that m_csStrings is locked by our caller already so no need
+ // to enter it again.
+ m_index = 0;
+ m_strings.clear();
+ completer->GetCompletions(prefix, m_strings);
+
+ {
+ CSLock lock(m_csUpdate);
+
+ if ( m_completer == completer && m_prefix == prefix )
+ {
+ // There were no calls to UpdateStringsFromCompleter() while we
+ // generated the completions, so our completions are still
+ // pertinent.
+ m_completer = NULL;
+ return;
+ }
+ //else: Our completions are already out of date, regenerate them
+ // once again.
+ }
+ }
+
+
+ // Critical section protecting m_strings and m_index.
+ CRITICAL_SECTION m_csStrings;
+
+ // The strings we iterate over and the current iteration index.