Tagged Questions
2
votes
1answer
7k views
forward declaration of a struct in C?
#include <stdio.h>
struct context;
struct funcptrs{
void (*func0)(context *ctx);
void (*func1)(void);
};
struct context{
funcptrs fps;
};
void func1 (void) { printf( "1\n" ); }
void ...
6
votes
2answers
1k views
Forward declare a struct in Objective-C
I'm creating a protocol, and one of the parameters to a method I'm defining is a CMTime*. I would like to forward declare CMTime as opposed to including it. However, I've tried @class CMTime and it ...
18
votes
4answers
6k views
C Programming: Forward variable argument list
I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, because it seems like it ...
17
votes
5answers
28k views
undefined C struct forward declaration
I have a header file port.h, port.c, and my main.c
I get the following error: 'ports' uses undefined struct 'port_t'
I thought as I have declared the struct in my .h file and having the actual ...