mirror of https://github.com/ioquatix/ffi-clang
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
296 B
C
17 lines
296 B
C
#ifndef FORWARD_H
|
|
#define FORWARD_H
|
|
|
|
// This is an opaque declaration, one would assume it is defined in a c file someplace
|
|
typedef struct Opaque Opaque;
|
|
|
|
// This is a forward declaration, the definition is below
|
|
struct Forward;
|
|
|
|
// This is the definition
|
|
struct Forward
|
|
{
|
|
int field1;
|
|
}
|
|
|
|
#endif
|