void far *MK_FP( unsigned segment, unsigned offset )
- prototype in dos.h
- returns a far pointer from offset and segment
- not available in some Microsoft C versions; use the following:
#define MK_FP(seg,off) \
((void far *) (((unsigned long)(seg) << 16) | (unsigned)(off))
- see FP_OFF() and FP_SEG()