show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Pointer to Pointer Managed C++

I have an old C library with a function that takes a void**:

oldFunction(void** pStuff);

I'm trying to call this function from managed C++ (m_pStuff is a member of the parent ref class of type void*):

oldFunction( static_cast<sqlite3**>(  &m_pStuff ) );

This gives me the following error from Visual Studio:

error C2440: 'static_cast' : cannot convert from 'cli::interior_ptr' to 'void **'

Any advice on how to resolve this, I'm guessing the compiler is converting the void* member pointer to a cli::interior_ptr behind my back.