mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[SMSS]
- Use integer instead of floating point - Don't link to msvcsup svn path=/trunk/; revision=52264
This commit is contained in:
@@ -27,7 +27,7 @@ add_executable(smss WIN32 ${SOURCE})
|
||||
|
||||
target_link_libraries(smss nt smlib)
|
||||
if(MSVC)
|
||||
target_link_libraries(smss msvcsup)
|
||||
# target_link_libraries(smss msvcsup)
|
||||
set_entrypoint(smss DllMainCRTStartup)
|
||||
endif()
|
||||
|
||||
|
||||
@@ -189,7 +189,7 @@ SmpPagingFilesQueryRoutine(PWSTR ValueName,
|
||||
if (InitialSize.QuadPart > GIGABYTE)
|
||||
{
|
||||
InitialSize.QuadPart = GIGABYTE;
|
||||
MaximumSize.QuadPart = GIGABYTE * 1.5;
|
||||
MaximumSize.QuadPart = GIGABYTE * 3 / 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user