UnixPageAllocator.cs 369 B

1234567891011121314151617181920
  1. using System;
  2. namespace BepInEx.IL2CPP
  3. {
  4. /// <summary>
  5. /// Based on https://github.com/kubo/funchook
  6. /// </summary>
  7. internal class UnixPageAllocator : PageAllocator
  8. {
  9. public override IntPtr Allocate(IntPtr hint)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public override void Free(IntPtr page)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. }
  18. }