Date: Mon, 25 Jan 1999 13:33:17 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Dirk Färber cc: djgpp AT delorie DOT com Subject: Re: xms-memory In-Reply-To: <78hhko$rg1$1@newsserver.rrzn.uni-hannover.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by delorie.com id GAA22581 Reply-To: djgpp AT delorie DOT com On 25 Jan 1999, Dirk Färber wrote: > does anyone knows how to access the xms-memory? If you compile your programs with DJGPP, you shouldn't normally need to access XMS memory as such. > Does djgpp offers advantagous concepts? Yes. Just call malloc with the size that you need (could be many megabytes) and use whatever it returns as normal memory. The DPMI server will do the rest (access XMS, allocate a block, do the necessary bookkeeping etc.). Isn't that what you want? If not, please describe the details.