home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / dirutl / dups.arc / FARPTR.C < prev   
Text File  |  1987-04-03  |  327b  |  14 lines

  1. unsigned long far_ptr(unsigned int,unsigned int);
  2.  
  3. unsigned long far_ptr(segment,offset)
  4.   unsigned int segment;
  5.   unsigned int offset;
  6.     {
  7.       unsigned long result;
  8.  
  9.       result=(unsigned long) segment;
  10.       result*=(unsigned long) 0x10000;
  11.       result+=(unsigned long) offset;
  12.       return(result);
  13.     }
  14.