2025-01-02 17:55:16 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Essgee
|
|
|
|
|
{
|
2025-02-05 13:13:19 +08:00
|
|
|
|
public enum ScreenSizeMode { Stretch, Scale, Integer }
|
2025-01-02 17:55:16 +08:00
|
|
|
|
|
|
|
|
|
public enum ExceptionResult { Continue, StopEmulation, ExitApplication }
|
|
|
|
|
|
|
|
|
|
public enum ExtraDataTypes { Raw, Image }
|
|
|
|
|
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum ExtraDataOptions
|
|
|
|
|
{
|
|
|
|
|
IncludeDateTime = (1 << 0),
|
|
|
|
|
AllowOverwrite = (1 << 1)
|
|
|
|
|
}
|
|
|
|
|
}
|