| 159 | //--------------------------------------------------------------------------- |
| 160 | template <class T> |
| 161 | void TUniList<T>::EnableMultiTreading(void) |
| 162 | { |
| 163 | if( bEnableMT ) |
| 164 | return; |
| 165 | InitializeCriticalSection( &busy ); |
| 166 | bEnableMT = true; |
| 167 | } |
| 168 | //--------------------------------------------------------------------------- |
| 169 | template <class T> |
| 170 | void TUniList<T>::SetBusy(bool b) |