Message-ID: <3886794F.9CF4D16@ou.edu> From: David Cleaver X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Problem with include files... Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 37 Date: Wed, 19 Jan 2000 20:56:15 -0600 NNTP-Posting-Host: 129.15.140.115 X-Complaints-To: usenet AT ou DOT edu X-Trace: news.ou.edu 948336904 129.15.140.115 (Wed, 19 Jan 2000 20:55:04 CST) NNTP-Posting-Date: Wed, 19 Jan 2000 20:55:04 CST Organization: The University of Oklahoma To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hello all, I recently tried to compile a project I'm working on and got an error I haven't seen before. Could someone please tell me what I've done wrong here: This is my header file: //=========================================== #ifndef _table011_h_ #define _table011_h_ unsigned char table011[][] = {{ 0, 0}, { 105, 96}, { 143, 0}, { 102, 96}, { 57, 192}, { 31, 128}, { 176, 192}, { 201, 32}, { 208, 160}, { 86, 160}, { 166, 64}}; #endif //=========================================== Looks simple enough right? Well, when I compiled I got the following error: //=========================================== table011.h:4: elements of array 'table011' have incomplete type //=========================================== What does this mean??? Any help you can give will be greatly appreciated. Have a nice day! :) -David C.