Message-ID: <351C39E1.B5F383B@pangea.ca> From: Lee MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Help : Allegro Menu *dp Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 12 Date: Fri, 27 Mar 1998 23:42:32 GMT NNTP-Posting-Host: 207.161.149.140 NNTP-Posting-Date: Fri, 27 Mar 1998 17:42:32 CST To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk In one of my menus, I need to pass more than one item of data thru the dp pointer, so I tried to declare a struct like so: struct moredata { int data1, data2; }; mymenu[0].dp = &moredata; //assuming I declared mymenu as a MENU type earlier However, I can't access the fields within the moredata struct from the function called by my menu...it says something along the lines of data1 not being a structure or union. Thanks for any help jag AT pangea DOT ca