Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2.  * Author: Marco 'RootkitNeo' C.
  3.  */
  4.  
  5. class WindowsMemoryInformation
  6. {
  7.   public native int length();
  8.   public native int memoryLoad();
  9.   public native int totalPhys();
  10.   public native int availPhys();
  11.   public native int totalVirtual();
  12.   public native int availVirtual();
  13.  
  14.   static
  15.   {
  16.     System.loadLibrary("WindowsMemoryInformation");
  17.   }
  18. }