FP_OFF是一個函式名,作用是獲取遠地址偏移量。
基本介紹
- 中文名:FP_OFF
- 類別:函式名
- 功 能:獲取遠地址偏移量
- 用 法:unsigned FP_OFF
函式名: FP_OFF
功 能: 獲取遠地址偏移量
用 法: unsigned FP_OFF(void far *farptr);
程式例:
/* FP_OFF */
#include <dos.h>
#include <stdio.h>
int main(void)
{
char *str = "fpoff.c";
printf("The offset of this file in memory\
is: %Fp\n", FP_OFF(str));
return 0;
}