BitmapProgramStruct.cs 313 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. namespace HNWD.LatticeScreen
  7. {
  8. public struct tagBitmapSource
  9. {
  10. public ushort type ;
  11. public ushort version ;
  12. public ulong size ;
  13. public char[] pdata;
  14. }
  15. }