pythonc++abstract-syntax-treecode-analysis

How do I access declarations (such as variables) inside a function using pygccxml


Given the below code, how would I access the myVar declaration, using pygccxml?

#include <windows.h>

void someFunction()
{
    LPBYTE myVar;
}

Solution

  • According to pygccxml FAQ, this feature is not currently supported.