2
votes
4answers
189 views
how do procedure calls work in assembler?
I just started tinkering with ASM and I'm not sure if my understanding of procedure calls is correct.
say at some point in the code there is a procedure call
call dword ptr[123]
…
8
votes
7answers
2k views
Function overloading by return type?
Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than …
0
votes
2answers
36 views
Categorizing architectures based on calling features
There are different ways of calling functions: call stacks, continuation passing, messaging and event handling. What do you call the category of these features? Invocation? What do …
0
votes
1answer
1k views
Making a another script function call from javascript
D ear All,
I have Designed the Javascript function My.js it contains following
code
My.js
function display(){
//Call to another Javascript function defined as ShowUser() …
2
votes
4answers
255 views
Visual Studio - show all calls to a function in source code level
Hi all,
I am wondering if there is anyway to list all the calls to a function in source code level so that I can see the dependency if I modify that function.
One method I use is …
3
votes
2answers
1k views
ARM to C calling convention, registers to save
It's been a while since I last coded arm assembler and I'm a little rusty on the details. If I call a C function from arm, I only have to worry about saving r0-r3 and lr, right? I …
2
votes
5answers
123 views
Is there a system where executing a program and calling a function is unified?
I would like to be able to do one or more of the following from the shell:
- call any function from the program not only the main
- pass parameters that are not only strings (not …
0
votes
2answers
1k views
How to call C# DLL function from VBScript
I have my script on server, so I have not UI interaction available and have to use DLL instead of console application.
How to call a function in C# DLL from VBScript?
Have I make …
4
votes
3answers
441 views
Passing functions which have multiple return values as arguments in Python
So, Python functions can return multiple values. It struck me that it would be convenient (though a bit less readable) if the following were possible.
a = [[1,2],[3,4]]
def cord( …
0
votes
2answers
375 views
Javascript Cookie onload Call
I have a cookie that I did using javascript and to check if it had to be replaced I used "onload=checkCookie()" in the body tag of the HTML, however now I'm trying to place the js …
3
votes
5answers
1k views
Synchronous dialogs in Flex?
How can I open a synchronous dialog in Flex? I need to call a function from an External Interface (JavaScript) that will open a simple dialog in the Flex application and returns an …
4
votes
5answers
306 views
Automatically call function #2 upon calling function #1
This should be a quick one. Is it possible to do something like this:
[Callback(funtionY)]
void functionX()
{
}
void functionY()
{
}
So that when functionX is called, functionY …
2
votes
5answers
465 views
Calling a function from a string in C#
I know in php you are able to make a call like:
$function_name = 'hello';
$function_name();
function hello() { echo 'hello'; }
Is this possible in .Net?
2
votes
4answers
408 views
Using function prototypes dynamically in PHP
Hi,
I'm writing a construct in PHP where a parser determins which function to call dynamically, kind of like this:
// The definition of what to call
$function_call_spec = array( …
2
votes
7answers
419 views
How to maintain lists and dictionaries between function calls in Python?
Its urgent...
I have a function. Inside that I'm maintainfing a dictionary of values.
I want that dictionary to be maintained between different function calls
Suppose the dic is …
