1. 第一种写法

1 typedef struct st_net_packet
2 {
3     struct st_net_packet *next;
4     uint32_t msgid;
5 
6     uint8_t* buffer;
7     uint32_t length;
8 
9 }st_net_packet_t;

 

相关文章:

  • 2021-10-12
  • 2021-10-26
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
相关资源
相似解决方案