browse-information

Getting a List of Symbols Used by My VC++ Code

只愿长相守 提交于 2019-12-01 13:17:56
I am building a tool that process my VC++ source codes. For this, I need to obtain a list of symbols including local variable names and their types used by my codes. I know Visual C++ 2010 already provides a .bsc file that allows the object browser to locate symbols quickly. But this is an interactive tool. I need to obtain a list of the symbols in a file. Is there any tools allowing us to programmatically obtain the list of symbols used in our own VC++ source codes? I tried the Debug Interface Access SDK provided by Microsoft. It allows us to read the .pdb file for the names of the local

Getting a List of Symbols Used by My VC++ Code

醉酒当歌 提交于 2019-12-01 11:15:17
问题 I am building a tool that process my VC++ source codes. For this, I need to obtain a list of symbols including local variable names and their types used by my codes. I know Visual C++ 2010 already provides a .bsc file that allows the object browser to locate symbols quickly. But this is an interactive tool. I need to obtain a list of the symbols in a file. Is there any tools allowing us to programmatically obtain the list of symbols used in our own VC++ source codes? I tried the Debug