PA_Draw_Sim.h
上传用户:holyzs
上传日期:2022-06-29
资源大小:2335k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. #ifndef __PA_DRAW_SIM_H__
  2. #define __PA_DRAW_SIM_H__ 1
  3. #pragma pack(1)
  4. typedef struct{
  5. u16 Id; // ?
  6. u32 Length;
  7. u16 Nothing1, Nothing2; // ?
  8. u16 ImageStart1, ImageStart2; // Offset of start of image, start at position 0x0A, which can only be 2-byte aligined
  9. } BMPHeader0;
  10. typedef struct{
  11. u32 SizeofHeader; // 40
  12. u32 Width, Height;
  13. u16 Colorplanes; // Usually 1
  14. u16 BitsperPixel; //1, 2, 4, 8, 16, 24, 32
  15. u32 Compression;  // 0 for none, 1...
  16. u32 SizeofData; // Not reliable
  17. u32 WidthperMeter, HeightperMeter; // Don't care
  18. u32 NColors, ImportantColors; // Number of colors used, important colors ?
  19. } BMP_Headers;
  20. void PA_LoadBmpToBuffer(u16 *Buffer, s16 x, s16 y, void *bmp, s16 SWidth);
  21. #endif // __PA_DRAW_SIM_H__