Subj : Re: Borland CPP 4.53 vs 5.02 To : borland.public.cpp.borlandcpp From : "Ed Mulroy [TeamB]" Date : Wed Mar 31 2004 12:44 pm Global data is placed into a segment. In 16 bit Windows and DOS the segmented architecture is set by the hardware to a segment size of 64K. Normal programming practice limits the number and size of globals so this limitation should not be a problem. However you can work around this by adding the keyword _far in a declaration to cause the item to be placed into its own segment. For example: int _far var_name[100]; .. Ed > Ron Croonenberg wrote in message > news:406af119$1@newsgroups.borland.com... > > Uhm...I just replied...thought it was just going to be posted > in the group.I just want the "thing" to compile.... > > I did get that "waveout" part working/compiling. > > Problem I seem to run into now is that : > > "Too much global data defined in file." > > I know it is not a good thing to have too much global data. > but is there something I can "increase" so that it takes > more global data for now ? .