| 119 | static InitMutex<AdjustFsCache> adjustFsCacheOnce("AdjustFsCacheOnce"); |
| 120 | |
| 121 | inline static DWORD getShareFlags(const bool shared_access, bool temporary = false) |
| 122 | { |
| 123 | return FILE_SHARE_READ | ((!temporary && shared_access) ? FILE_SHARE_WRITE : 0); |
| 124 | } |
| 125 | |
| 126 | static const DWORD g_dwExtraFlags = FILE_FLAG_OVERLAPPED; |
| 127 |
no outgoing calls
no test coverage detected