WebCommonReturnValue.cs 289 B

123456789101112
  1. using Ryujinx.Common.Memory;
  2. namespace Ryujinx.HLE.HOS.Applets.Browser
  3. {
  4. public struct WebCommonReturnValue
  5. {
  6. public WebExitReason ExitReason;
  7. public uint Padding;
  8. public ByteArray4096 LastUrl;
  9. public ulong LastUrlSize;
  10. }
  11. }