开发平台(Platform): (Ex: Win10, Linux, ...)
windows
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
VS
问题(Question):
我写的程式,要读取另一个程式内存内的资料
那个资料是完整的struct结构,但是其内容非常大
而我只知道struct的大小,但整个结构不知道
但是我只要其中几个数据
我自己建立一个struct去读他
typedef struct _iteminfo
{
int index;
int type;
char* name;
.
.
.
int count;
.
.
_iteminfo* next;
}*ITEMINFO
中间的....有的资料但是我用不到,我要怎么把中间的资料弄满去完成这整个struct
还是只能弄个同样大小的东西去塞他?