Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Flipper 6.0 Help File - <b>the clipper screen drivers for clipper 5.2</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
The Clipper Screen Drivers for Clipper 5.2
   Clipper Screen Driver Routines, Copyright (c) Computer Associates 1993.
   ALL rights reserved.

   These drivers will allow you to do SAY's, GET's, DBEDIT's, etc. in graphics
   mode. See G_EXAM43.PRG. You must link FLPDRV52.OBJ into your Clipper
   program as an FI FLPDRV52.

   Use them under the following conditions:

   1 - The cursor must be turned off when painting the screen with Flipper
       functions such as FBOX(), PLOT(), etc.

   2 - You should not call setmode() once you have called DRV_BEGIN(). The
       number of rows and columns on the screen will be set automatically by
       your choice of fonts with DRV_FONT(). A small font will produce a large
       number of rows and columns. You may create a virtual screen larger than
       will fit on the monitor at one time by using optional arguments in
       DRV_BEGIN(). And the upper left corner can be set with DRV_ORIGIN().
       FSCREEN() does not need to be called either. DRV_BEGIN() automatically
       sets the screen in graphics mode. The original number of rows and
       columns will be restored after DRV_END().

   3 - When using _FLPCURSOR() for a blinking cursor and the BLINKER linker,
       the following link file places additional object code into the root.

BLINKER INCREMENTAL OFF
BLINKER OVERLAY OPSIZE 100
BLINKER CACHE EMS 100,0%
#
# clipper 5.2 screen drivers
FI \FLIPPER6\LIBRARY\FLPDRV52
SEARCH \FLIPPER6\LIBRARY\CLIP52
BEGINAREA
   mod FILECLIP,HP_CLIP,PS_CLIP FROM CLIP52
   mod GRAPHICS,PRT_CLIP FROM CLIP52
   ALLOCATE \FLIPPER6\LIBRARY\FLIP6
   ALLOCATE \FLIPPER6\LIBRARY\FLP_3D
ENDAREA
mod FILL_FIG,LO_OVAL,LOPATARC,LO_OVARC FROM FLIP6
mod GETEVENT,SAVEBACK,EGA_HERC FROM FLIP6
mod FIND_PEL,PUT_PEL,FASTLINE,GET_PEL FROM FLIP6
mod CALLBIOS,_GFXMOVE,PIC_ASM FROM FLIP6
mod VIDBLOCK,SETEVHND,SETKYBD,FINDB FROM FLIP6
mod FINDW,_IDIV,GFX_SCRN,LO_QSORT FROM FLIP6
mod WRTCHAR,_LO_OVAL FROM FLIP6
#
# these modules are added when the flashing cursor is used.
mod MOUSE_1,MOUSE_2,LO_PRINT,INIT_GFX FROM FLIP6
mod _LINES,LINE_PAT,FLP_BOX FROM FLIP6
#
mod CAD_OHOT,CAD_MOUS,CAD_DRAW,COMM FROM FLIP6
mod MSSEARCH,MSONLY,LARGE FROM FLIP6
@\BLINKER2\CLP\CL501MAX.LNK

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