mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-11 17:28:01 +08:00
38 lines
687 B
Protocol Buffer
38 lines
687 B
Protocol Buffer
syntax = "proto3";
|
|
// 2025年3月微信4.0.3正式版修改了img命名方式才有了这个东西
|
|
message PackedInfoDataImg2 {
|
|
int32 field1 = 1;
|
|
int32 field2 = 2;
|
|
ImageInfo imageInfo = 3;
|
|
VideoInfo videoInfo = 4;
|
|
FileInfo fileInfo = 7;
|
|
}
|
|
|
|
message ImageInfo {
|
|
int32 height = 1;
|
|
int32 width = 2;
|
|
string filename = 4;
|
|
}
|
|
|
|
message VideoInfo {
|
|
int32 height = 4;
|
|
int32 width = 5;
|
|
string filename = 8;
|
|
}
|
|
|
|
message FileInfo {
|
|
FileSubMessage1 fileInfo = 1;
|
|
FileSubMessage2 field2 = 2;
|
|
string field3 = 3;
|
|
}
|
|
|
|
message FileSubMessage1 {
|
|
int32 field1 = 1;
|
|
string filename = 2;
|
|
}
|
|
|
|
message FileSubMessage2 {
|
|
string field1 = 1;
|
|
string field2 = 2;
|
|
string field3 = 3;
|
|
} |