0
votes
1answer
41 views
Modifying a structure array through a pointer passed to a function
I am trying to pass a structure array pointer and a pointer to a structure array pointer into a function and then have it modified rather than using a return.
This example code is indeed pointless, …
0
votes
5answers
63 views
Passing a structure by reference and manipulating it
typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
…
0
votes
2answers
65 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs looks like:
- …
1
vote
1answer
46 views
Execute method with arguments through action mapping in struts 2
How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action maps to MyClass.MyMethod(Arg)? I tried this:
<action name="MyAction_*" …
1
vote
4answers
109 views
Passing parameters dynamically to variadic functions
Hi there.
I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function
int some_function (int a, int b, ...){/*blah*/}
and I am accepting a …
1
vote
1answer
37 views
Create a Mac Application Installer and Passing Arguments on Launch
Couple questions on creating a mac installer.
1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?
2) When we normally launch the executable we pass it an …
1
vote
2answers
130 views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to all the subviews on …
0
votes
5answers
163 views
C Variable Scope Specific Question
Here is a particular scenario that I have been unclear about (in terms of scope) for a long time.
consider the code
#include <stdio.h>
typedef struct _t_t{
int x;
int y;
} t_t;
typedef …
5
votes
5answers
110 views
Hashes vs. Multiple Params?
It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.
My question is - when do you use parameters for your method and when …
5
votes
8answers
942 views
How do I pass a hash to a function in Perl?
I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with function declarations, …
0
votes
4answers
39 views
Passing variables from main form to input form
Hi
I have a simple question. I have a main form, and then a startup form from where I can select a new 3D model to generate. When selecting a new 3D model from the startup form, I want to check first …
0
votes
3answers
164 views
How Do I capture a variable (C#)
How Do I capture a variable?
Alternatively, can I store a reference to an object reference?
Normally, a method can alter a variable outside of it using ref keyword.
void Foo(ref int x)
{
x = 5;
…
1
vote
2answers
553 views
Pass and access structures using objective-c
I want to know how to pass structures to another function and subsequently access that structure in the called function. I'm developing for the iPhone and the reason I'm using structs is so that I can …
2
votes
2answers
540 views
Using command-line argument for passing files to a program
How can I receive a file as a command-line argument?
1
vote
5answers
102 views
defining functions in decorator
Why does this not work? How can I make it work? That is, how can I make gu accessible inside my decorated function?
def decorate(f):
def new_f():
def gu():
pass
f()
…
