Intel® Business Client Software Development
Support for Intel® vPro™ software development and technologies associated with Intel vPro platforms.
1382 Discussions

hey you can use pointer functions in c data structures

Jonm1
Beginner
348 Views

a pointer function holds the value of a function

you can do

#include <stdlib.h>
#include <stdio.h>


struct win{
};

struct api{
};
struct Windows{
  struct api (*pfunc)(struct api,int);
};

 

and in cpp you can include classes in pointer function arguments/definitons

hope this helps!

 

can work excellently in messaging, you can hold the value of something like a form and follow it with attributes 

0 Kudos
0 Replies
Reply