libva
libva copied to clipboard
private interface with parameters in va
I want to add a private interface in standard libva but vaGetLibFunc only return a pointer that has no prarameters ,so how can I get a private function with parameters
may be
typedef int (*VAPrivFunc)(void) VAPrivFunc vaGetLibFunc ( VADisplay dpy, const char *func );
To
typedef int (VAPrivFunc pointer)(void pointer)
VAPrivFunc vaGetLibFunc ( VADisplay dpy, const char *func );
is better
why pointer symbol can not be showed