| 106 | } |
| 107 | |
| 108 | void Lock() |
| 109 | { |
| 110 | if (m_openfile) { |
| 111 | if (m_bExclusiveLock) |
| 112 | m_openfile->LockExclusive(); |
| 113 | else |
| 114 | m_openfile->LockShared(); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void ReLock(bool exclusive) |
| 119 | { |
nothing calls this directly
no test coverage detected