1 /** 2 * 3 */ 4 package org.sirius.server.win32.constants; 5 6 /** 7 * @author Myk Kolisnyk 8 * 9 */ 10 public interface IMEMConsts { 11 12 int MEM_COMMIT = 0x00001000; 13 int MEM_RESERVE = 0x00002000; 14 int MEM_RESET = 0x00080000; 15 int MEM_RESET_UNDO = 0x1000000; 16 17 int MEM_LARGE_PAGES = 0x20000000; 18 int MEM_PHYSICAL = 0x00400000; 19 int MEM_TOP_DOWN = 0x00100000; 20 21 int MEM_DECOMMIT = 0x4000; 22 int MEM_RELEASE = 0x8000; 23 }