-
Notifications
You must be signed in to change notification settings - Fork 113
Closed
Labels
Description
PAINTSTRUCT is currently being generated as:
internal partial struct PAINTSTRUCT
{
internal winmdroot.Graphics.Gdi.HDC hdc;
internal winmdroot.Foundation.BOOL fErase;
internal winmdroot.Foundation.RECT rcPaint;
internal winmdroot.Foundation.BOOL fRestore;
internal winmdroot.Foundation.BOOL fIncUpdate;
internal unsafe byte* rgbReserved;
}The final field is actually a fixed array:
BYTE rgbReserved[32];