Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo C - <b>fp_seg() get or set segment portion of a far pointer (macro)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
FP_SEG()                 Get or Set Segment Portion of a Far Pointer (Macro)

 #include   <dos.h>

 unsigned   FP_SEG(longptr);
 far        *longptr;                    Long pointer to memory address

    FP_SEG() is a macro that can be used to get or set the segment
    portion of the far pointer 'longptr'.

    Returns:    An unsigned integer value representing a segment address.

      Notes:    FP_SEG() is a macro.

  -------------------------------- Example ---------------------------------

    The following example gets the segment portion of a far pointer and
    increments it to the next paragraph.

         #include <dos.h>

         char far *ptr;
         unsigned int seg_val;

         main()
         {
              seg_val = FP_SEG(ptr);
              FP_SEG(ptr) = seg_val + 16;
         }

See Also: FP_OFF() segread()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson