Ejemplo n.º 1
0
 public void Free(int address, int length)
 {
     _free.Invoke(address, length);
 }
Ejemplo n.º 2
0
 public int Allocate(int length)
 {
     return((int)_malloc.Invoke(length));
 }