DisplayMagician/DisplayMagicianShared/ScanLineOrdering.cs
Terry MacDonald 9e1ef4a095 [WIP] First working WiX installer
Installer works, but there are a few issues with it.
- It doesn't register the DesktopBackground COM server
- It doesn't create a start menu shortcut with the AUMID
- It doesn't check for .Net Framework 4.8 or later
- It doesn't try to install .Net Framework 4.8 or later if not there
- It doesn't have any customised backgrounds...
- It doesn't ask to run DisplayMagician when install is finished
2020-12-20 20:42:04 +13:00

10 lines
203 B
C#

namespace DisplayMagicianShared
{
public enum ScanLineOrdering
{
NotSpecified,
Progressive,
InterlacedWithUpperFieldFirst,
InterlacedWithLowerFieldFirst
}
}