1
vote
3answers
49 views

Why is forward declaration of structure not working in my code? When can it be used in C?

Isn't forward declaration, whether for structures or functions, supposed to do what forward declaration is expected to do, ie, to let us use the structure or function before they are defined? Why is ...
-2
votes
1answer
67 views

Struct declaration in C [closed]

I have a simple program in pure C, for reading records from file and putting the into linked list. I am not allowed to use global variables. Program looks like this: Here are some includes Some ...
0
votes
2answers
398 views

C++ - Forward declaration of typedef struct with object names

Consider this class from the WinAPI: typedef struct tagRECT { LONG left; LONG top; LONG right; LONG bottom; } RECT, *PRECT, NEAR *NPRECT, FAR *LPRECT; I am enhancing it ...
0
votes
1answer
103 views

incomplete type, forward declaration

I'm just learning C++ and I'm having a lot of problems. Right now I'm trying to implement a frequency queue with a heap and a hashtable, so I'm trying to make structs for hash table entrys and heap ...
1
vote
0answers
242 views

forward declaration of C structure in C++ [duplicate]

Possible Duplicate: Forward declare FILE * Suppose I want to write a wrapper class for C struct that is accest by a pointer to it such as FILE in C you have to say typedef struct _iobuf ...
4
votes
2answers
694 views

Is it possible to forward declare a typedef that is within a namespace?

I've looked around and I can't quite tell if the other similar questions answer this or not. // lib.h namespace lib_namespace { struct lib_struct { typedef std::vector<LibObject> ...
1
vote
3answers
3k views

typedef stuct with forward declaration in C

I have something like: typedef struct Data DATA, *DATA_PTR; typedef struct Units UNITS, *UNITS_PTR; struct Data { double miscData; UNITS units; }; struct Units { double x[2]; double ...
1
vote
2answers
1k views

Any way in C to forward declare struct in header without having to use pointer in other files?

Suppose I have this in list.h: typedef struct list_t list_t; typedef struct list_iter_t list_iter_t; list_iter_t iterator(list_t *list); and then define them in list.c: typedef struct node_t { ...
22
votes
12answers
5k views

Forward declarations of unnamed struct

Bounty question: So, these two Foos aren't the same thing. Fine. The second form is given in a library. How do I forward-declare it given that I can't change it? I always thought C and C++ allowed ...
0
votes
1answer
76 views

One class uses a second class which uses a struct defined in the first

I'm trying to make a model with bones. It loads a .obj file to create the mesh, and uses groups of faces to define each "bone" or part of the model. I have a Model class. In the header file, I have ...
2
votes
2answers
418 views

Named Structures in C++ Unions

In C++, I'm trying to create a specialized point class as a union, like so: union point { struct { float x, y, z; }; float val[3]; float operator[](unsigned i) { return val[i]; } }; So that I ...
5
votes
2answers
1k views

struct forward declaration fails compile

I have the following code, but the compiler says sender_wrapper is undefined, even though I forward declared it. Can I not do a forward declare of a struct? (compiled with VS2003) struct ...
1
vote
3answers
281 views

Passing pointers to private structs in C?

How can I pass around pointers to structs which have private definitions, without prepending the pointer types with struct? For example this works: typedef struct Handle { Ino ino; } Handle; ...
3
votes
4answers
300 views

foward typedef structures

gcc 4.4.4 c89 I have this in my header file. port.h struct struct_tag; int initialize_ports(struct_tag *port); In my implemenation file I have this: port.c typedef struct struct_tag { int ...
7
votes
3answers
16k views

storage size of ‘names’ isn’t known

I get this error while compiling this .c source file /INIT_SOURCE_BUILD/src/names_list.c:7: error: storage size of ‘names’ isn’t known #include <stdio.h> #include "list.h" int main(){ ...
1
vote
3answers
1k views

Forward declarations for variables?

I have some C code that I have to port to C++. The code has a structure struct A { ... struct A * myPtr; } And now two global arrays are declared and initialized like this: //Forward ...
1
vote
6answers
2k views

Forward declare pointers-to-structs in C++

I am using a 3rd party library that has a declaration like this: typedef struct {} __INTERNAL_DATA, *HandleType; And I'd like to create a class that takes a HandleType in the constructor: class ...