Tagged Questions
The multiple-indirection tag has no wiki summary.
10
votes
5answers
3k views
What is double star?
So, I saw this:
error:(NSError **)error
in the apple doc's. Why two stars? What is the significance?
4
votes
1answer
89 views
Cast of an indirect pointer to an Objective-C pointer to 'CFReadStreamRef *' is disallowed with ARC
I want to use CFStreamCreatePairWithSocketToHost with NSInput- and OutputStreams. I have two ivars NSInputStream *_inputStream and NSOutputStream *_outputStream.
The following gives me two error ...
1
vote
1answer
67 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
285 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 ...