home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap16 / mkfp.c next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  248 b   |  14 lines

  1. #include <dos.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. int main()
  5. {
  6.   char far *p;
  7.   unsigned int segment = 0xb800, offset = 0;
  8.  
  9.   p = MK_FP(segment, offset);
  10.   printf("The CGI video buffer is at %lp\n", p);
  11.   return EXIT_SUCCESS;
  12. }
  13.  
  14.