I am trying to interpret the following line of code:
dc1394_t* dc1394_new (void);
I read this as a function with void argument, which returns a pointer to type dc1394_t
The problem is that there is no reference to or definition of the type dc1394_t. Is there some other interpretation of this line?
Thanks
dc1394_t* dc1394_new (void);
I read this as a function with void argument, which returns a pointer to type dc1394_t
The problem is that there is no reference to or definition of the type dc1394_t. Is there some other interpretation of this line?
Thanks