Implement MxTransitionManager ctor/dtor/rest of StartTransition (#153)

This commit is contained in:
MattKC
2023-10-01 17:18:16 -07:00
committed by GitHub
parent 592ede1c7b
commit 56f3d12096
4 changed files with 116 additions and 39 deletions

View File

@@ -3,20 +3,7 @@
#include <windows.h>
// Must be union with struct for match.
typedef union {
struct {
BYTE bit0: 1;
BYTE bit1: 1;
BYTE bit2: 1;
BYTE bit3: 1;
BYTE bit4: 1;
BYTE bit5: 1;
BYTE bit6: 1;
BYTE bit7: 1;
};
// BYTE all; // ?
} flag_bitfield;
#include "mxtypes.h"
class MxVideoParamFlags
{