RGBQUAD.cs 174 B

1234567891011121314
  1. using System;
  2. namespace Standard;
  3. internal struct RGBQUAD
  4. {
  5. public byte rgbBlue;
  6. public byte rgbGreen;
  7. public byte rgbRed;
  8. public byte rgbReserved;
  9. }