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

 #include   <dos.h>

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

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

    Returns:    The offset as an unsigned integer value.

 Portability:   Applies to MS DOS only.

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

    The following example gets the offset portion of a far pointer and
    increments it by one.

           #include <dos.h>

           void far *ptr;
           unsigned int off_val, seg_val;

           main()
           {
                seg_val = FP_SEG(ptr);
                off_val = FP_OFF(ptr);
                FP_OFF(ptr) = ++off_val;
                printf("%04x:%04x",seg_val,off_val);
           }


See Also: FP_SEG() segread()

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