PackMap.h 245 B

1234567891011121314151617181920
  1. #ifndef _PACK_MAP_H
  2. #define _PACK_MAP_H
  3. /*
  4. * PackMap是通用类,所有对像都可以用它来打包成PackMap并保存
  5. */
  6. #include "SystemMemory.h"
  7. typedef struct {
  8. int sum;
  9. uint8_t *buff;
  10. }PackMap;
  11. extern int remove_pack_map(PackMap *pack);
  12. #endif