10 lines
312 B
C++
10 lines
312 B
C++
/* PROJECT: Alcyone Kernel
|
|
* LICENSE: BSD Clause 3
|
|
* PURPOSE: Cache Controller:: LOG Handler
|
|
* NT KERNEL: 5.11.9360
|
|
* COPYRIGHT: 2023-2029 Dibymartanda Samanta <>
|
|
*/
|
|
|
|
constexpr unsigned int READAHEAD_FLAG = 1;
|
|
constexpr unsigned int DISABLE_WRITE_FLAG = 0x202;
|
|
constexpr unsigned int ENABLE_WRITE_FLAG = 2; |