Interop.cs 286 B

123456789101112131415161718
  1. using System;
  2. internal static partial class Interop
  3. {
  4. internal static partial class Sys
  5. {
  6. internal static uint GetEUid ()
  7. {
  8. throw new PlatformNotSupportedException ();
  9. }
  10. internal static int SetEUid (uint euid)
  11. {
  12. throw new PlatformNotSupportedException ();
  13. }
  14. }
  15. }