home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name mocheck, mohide, mopreclk --
- ; Do-nothing stub routines to exclude mouse support.
- ;
- ; Synopses ercode = mocheck(events,ignore,option,pfound,pvert,phoriz);
- ; ercode = mohide(option);
- ; ercode = mopreclk(option);
- ;
- ; int ercode Always returned as MO_NOLINK.
- ;
- ; unsigned u_row Ignored.
- ; unsigned u_col Ignored.
- ; unsigned l_row Ignored.
- ; unsigned l_col Ignored.
- ;
- ; unsigned long events
- ; Ignored.
- ; unsigned long ignore
- ; Ignored.
- ; int option Ignored.
- ; unsigned long *pfound
- ; Ignored.
- ; unsigned *pvert,*phoriz
- ; Ignored.
- ;
- ; int option Ignored.
- ;
- ; Description These functions do nothing except return the error code
- ; MO_NOLINK. They are designed to prevent the inclusion
- ; of mouse support in applications that use no mouse
- ; functions directly.
- ;
- ; Rebuilding This module is intended to be model-independent. In the
- ; BMOUSE.H header file, the functions are declared as
- ; "cdecl far", forcing all calling programs to use the
- ; correct calling sequence.
- ;
- ; You can reassemble this file under any memory model and
- ; link the resulting object file with any memory model.
- ; We recommend that you use a small-model version of
- ; COMPILER.MAC and use the same resulting .OBJ file with
- ; all models.
- ;
- ; Returns ercode Always returned as MO_NOLINK.
- ;
- ; Version 6.00 (C)Copyright Blaise Computing Inc. 1989
- ;
-
- include beginasm.mac
-
- MO_NOLINK equ -3 ; Must match BMOUSE.H.
-
- beginMod bnomouse
-
- ; MOCHECK
-
- beginCSeg mocheck
- beginProc mocheck ; Will exit with far RETurn.
-
- mov ax,MO_NOLINK ; Error code.
- db 0cbh ; Far return.
-
- endProc mocheck
- endCseg mocheck
-
- ; MOHIDE
-
- beginCSeg mohide
- beginProc mohide ; Will exit with far RETurn.
-
- mov ax,MO_NOLINK ; Error code.
- db 0cbh ; Far return.
-
- endProc mohide
- endCseg mohide
-
- ; MOPRECLK
-
- beginCSeg mopreclk
- beginProc mopreclk ; Will exit with far RETurn.
-
- mov ax,MO_NOLINK ; Error code.
- db 0cbh ; Far return.
-
- endProc mopreclk
- endCseg mopreclk
-
- endMod bnomouse
-
- end