home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!cleveland.Freenet.Edu!bu254
- From: bu254@cleveland.Freenet.Edu (Stephen Groundwater)
- Newsgroups: comp.os.msdos.programmer
- Subject: Re: BC++ Far new()
- Date: 8 Sep 1992 20:19:53 GMT
- Organization: Case Western Reserve University, Cleveland, OH (USA)
- Lines: 17
- Message-ID: <18j1t9INNbs3@usenet.INS.CWRU.Edu>
- References: <18j0e6INN8ju@usenet.INS.CWRU.Edu> <gin503.715957220@cdc835>
- Reply-To: bu254@cleveland.Freenet.Edu (Stephen Groundwater)
- NNTP-Posting-Host: hela.ins.cwru.edu
-
-
- In a previous article, bu254@cleveland.Freenet.Edu (Stephen Groundwater) says:
-
- >>
- >>Question : how can I call the far version of 'new()' from a small memory
- >> program ?
- >>
- >char far *MyBuf;
- >MyBuf=(char far *)new(100L);
- >
- >Voila, 100 bytes of far memory, the important bit is the L.
- >
- Opps, what I meant to say was
- MyBuf=(char far *)new[100L];
- sorry.
-
- Steve
-