mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 22:49:12 +00:00
[NTOSKRNL] Fix MSVC build?
This commit is contained in:
parent
2d4a54dcf2
commit
f032b77c51
1 changed files with 4 additions and 0 deletions
|
@ -71,7 +71,11 @@ ULONG CcTotalDirtyPages = 0;
|
|||
LIST_ENTRY CcDeferredWrites;
|
||||
KSPIN_LOCK CcDeferredWriteSpinLock;
|
||||
LIST_ENTRY CcCleanSharedCacheMapList;
|
||||
#ifndef _MSC_VER
|
||||
LARGE_INTEGER CcIdleDelay = {.QuadPart = (LONGLONG)-1*1000*1000*10};
|
||||
#else
|
||||
LARGE_INTEGER CcIdleDelay = {(LONGLONG)-1*1000*1000*10};
|
||||
#endif
|
||||
|
||||
/* Internal vars (ROS):
|
||||
* - Event to notify lazy writer to shutdown
|
||||
|
|
Loading…
Reference in a new issue