Domanda

I have two functions,

//virDomain is some struct
int virDomainCreate(virDomain*);
int virDomainDestroy(virDomain*);

How do I assign these two functions to a variable?

I tried,

int (*func)(virDomain*) = NULL;
func = virDomainCreate(virDomain*); // not working
func = &virDomainDestroy(virDomain*); //not working

Thanks for all your help! Waka.

È stato utile?

Soluzione

You can just assign the pointer to the function like:

func = &virDomainCreate;

Or you can just use the short format:

func = virDomainCreate;

Altri suggerimenti

The return type is int so

int func;
func = virDomainCreate(virDomain*); 
func = virDomainDestroy(virDomain*);

will work.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top