[DllImport("coredll.dll", SetLastError=true)]
static extern uint SetSystemMemoryDivision(uint dwStorePages);
Declare Function SetSystemMemoryDivision Lib "coredll.dll" (dwStorePages As UInt32) As UInt32
None.
Do you know one? Please contribute it!
This function takes one argument - size of storage in memory pages. It returns result code that could be:
0 - memory division changed successfully
1 - need to reboot to accept memory division changes
2 - cannot change memory division because the system should be rebooted after the previous call before
3 - change failed.
Please add some!
Please add some!