Tagged Questions
1
vote
1answer
68 views
How to pass (and set) non-objects by indirection?
NSError objects are frequently used like this (taken from this previous question):
- (id)doStuff:(id)withAnotherObjc error:(NSError **)error;
I want to achieve something similar with BOOL ...
1
vote
4answers
286 views
TOUGH: Dealing with deeply nested pointers in C++
I define this structure:
struct s_molecule
{
std::string res_name;
std::vector<t_particle> my_particles;
std::vector<t_bond> my_bonds;
std::vector<t_angle> my_angles;
...
1
vote
1answer
530 views
C# P/Invoke: How to achieve double indirection for a field of a structured parameter
I am calling into a native dll from C#. For the specific function in question, one of the parameters I need is a structure which contains a doubly-indirect field (pointer to a pointer).
For example, ...
0
votes
1answer
54 views
void** parameter called with a fixed array value
I have a fixed-size array declared:
int vals[25];
And I'd like to send the array to a function which will assign the values of vals:
bool FetchValueArray(char* source, char* name, char* ...
-1
votes
4answers
170 views
Weird Pointer issue in C++
I'm running into a VERY frustrating pointer issue. I previously posted here:
http://stackoverflow.com/questions/3114997/tough-dealing-with-deeply-nested-pointers-in-c
But that post got overly long ...