1
vote
3answers
91 views
Refactoring function pointers to some form of templating
Bear with me as I dump the following simplified code: (I will describe the problem below.)
class CMyClass
{
...
private:
HRESULT ReadAlpha(PROPVARIANT* pPropVariant, SomeLib: …
2
votes
15answers
406 views
C memcpy() a function
Hi guys,
Is there any method to calculate size of a function? I have a pointer to a function and I have to copy entire function using memcpy. I have to malloc some space and know …
4
votes
10answers
195 views
What are function pointers used for, and how would I use them?
I understand I can use pointers for functions.
Can someone explain why one would use them, and how? Short example code would be very helpful to me.
0
votes
4answers
123 views
C++ Using Class Method as a Function Pointer Type
Hi,
In a C lib, there is a function waiting a function pointer such that:
lasvm_kcache_t* lasvm_kcache_create(lasvm_kernel_t kernelfunc, void *closure)
where lasvm_kernel_t is d …
1
vote
1answer
25 views
Memory full on calling a method through its method pointer
I have a method pointer like below:
typedef void (MMsnInternalCallBacks::* FuncPtr)();
FuncPtr iSoapActionComplete;
I call the method below through the pointer iSoapActionComple …
0
votes
2answers
74 views
Access function pointer defined in a structure?
Write a program to access the function "foo" using the structure structure2.
typedef struct
{
int *a;
char (*fptr)(char*);
}structure1;
typedef struct
{
int x;
struct …
0
votes
2answers
48 views
Private member function that takes a pointer to a private member in the same class
How can I do this? (The following code does NOT work, but I hope it explains the idea.)
class MyClass
{
....
private:
int ToBeCalled(int a, char* b);
typedef …
1
vote
4answers
96 views
Iterate over functions
Is something like this possible to do in Java?
for (Object o : objects) {
for (Function f : functions) {
f(o);
}
}
I'm only calling a handful of functions, but I need to …
9
votes
6answers
466 views
Can you explain the following C/C++ statement?
void (*func)(int(*[ ])());
2
votes
5answers
149 views
c++: what exactly does &rand do?
This is an excerpt of some c++ code, that i'll have to explain in detail in some days:
std::vector<int> vct(8, 5);
std::generate(vct.begin(), vct.end(), &rand);
std::c …
2
votes
5answers
189 views
Is There C Syntax For Function Pointer From Function Declaration
Instead of declaring a function pointer typedef for a function, is it possible to get it from the function declaration?
Typically,
int foo(int x);
typedef int (*fooFunc)(int);
fo …
1
vote
4answers
96 views
Passing an array of arbitrary struct pointers to a C function?
I want to pass an array of arbitrary struct pointers and a comparison function to a generic sorting algorithm. Is this possible in C?
The goooeys of the structs would only be acce …
0
votes
7answers
183 views
Why warning in C and can’t compile in C++?
Why does this code
int (*g)(int);
int (*h)(char);
h = g;
In C, give me such warning when compiling:
'warning: assignment from incompatible pointer type'
In C++, can't be able …
8
votes
8answers
434 views
Can I declare a function that can take pointer to itself as an argument?
Reading a question in stackoverflow, I wondered whether it's possible to declare a function that takes a pointer to itself. I.e. to make such declaration of foo, for which the fol …
1
vote
0answers
39 views
Is it possible to infer that a ParameterInfo object refers to a function pointer containing managed parameter types?
I'm using reflection to examine the following method declaration and am wondering if it is possible to determine that the method's sole parameter is a function pointer.
public ref …
