Advertisement
Guest User

WindowsMemoryInformation

a guest
Sep 5th, 2014
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement