windbg基本简单步骤

源码app #include <stdio.h> #include <string> typedef struct _st{ int a; int b; }ST; int fun(int* p, const ST& s) { *p = s.a + s.b; return s.a < s.b ? s.a : s.b; } void main() { ST s; s.a = 3; s.b = 4; i
相关文章
相关标签/搜索