Date: Thu, 18 Sep 1997 12:20:03 +0300 (IDT) From: Eli Zaretskii To: csantill AT lausd DOT k12 DOT ca DOT us cc: djgpp AT delorie DOT com Subject: Re: Getting a size unknown error w/dpmi.h struct In-Reply-To: <342053F7.67F3@lausd.k12.ca.us> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 17 Sep 1997 csantill AT lausd DOT k12 DOT ca DOT us wrote: > // This line gives me the storage size unknown error // > struct _go32_dpmi_meminfo m; //********************// You should have written this: _go32_dpmi_meminfo m; `_go32_dpmi_meminfo' is a name of a typedef, not a name of a struct. Saying "struct _go32_dpmi_meminfo" is like saying "struct int": the compiler doesn't know about a struct called `int'.