Jump to content

MouOpen: Difference between revisions

From EDM2
Ak120 (talk | contribs)
m Ak120 moved page OS2 API:CPI:LEGACY:MouOpen to MouOpen
Ak120 (talk | contribs)
mNo edit summary
 
Line 11: Line 11:


==Return Code==
==Return Code==
rc (USHORT) - return
;rc (USHORT) - return:Return code descriptions are:
Return code descriptions are:
* 0 NO_ERROR
* 0 NO_ERROR  
* 385 ERROR_MOUSE_NO_DEVICE
* 385 ERROR_MOUSE_NO_DEVICE  
* 390 ERROR_MOUSE_INV_MODULE_PT
* 390 ERROR_MOUSE_INV_MODULE_PT  
* 466 ERROR_MOU_DETACHED
* 466 ERROR_MOU_DETACHED  
* 501 ERROR_MOUSE_NO_CONSOLE
* 501 ERROR_MOUSE_NO_CONSOLE  
* 505 ERROR_MOU_EXTENDED_SG
* 505 ERROR_MOU_EXTENDED_SG


Line 24: Line 23:


The state of the mouse after the first MouOpen is:
The state of the mouse after the first MouOpen is:
* Row/Col scale factors set to 16/8. (See [[MouSetScaleFact]])  
* Row/Col scale factors set to 16/8. (See [[MouSetScaleFact]])
* All events reported. (See [[MouSetEventMask]])  
* All events reported. (See [[MouSetEventMask]])
* Empty event queue. (See [[MouReadEventQue]] and [[MouGetNumQueEl]])  
* Empty event queue. (See [[MouReadEventQue]] and [[MouGetNumQueEl]])
* All user settable Device Status bits reset. (Set to zero. See [[MouSetDevStatus]])  
* All user settable Device Status bits reset. (Set to zero. See [[MouSetDevStatus]])
* Pointer set to center of screen if valid display mode is set. (See [[MouSetPtrPos]])  
* Pointer set to center of screen if valid display mode is set. (See [[MouSetPtrPos]])
* Pointer shape set to the default for the pointer device driver currently registered in the session. (See [[MouSetPtrShape]])  
* Pointer shape set to the default for the pointer device driver currently registered in the session. (See [[MouSetPtrShape]])
* Collision area equal to full screen. (See [[MouDrawPtr]] and [[MouRemovePtr]])
* Collision area equal to full screen. (See [[MouDrawPtr]] and [[MouRemovePtr]])


==Example Code==
==Bindings==
=== C Binding===
===C===
<PRE>
<PRE>
#define INCL_MOU
#define INCL_MOU
Line 39: Line 38:
USHORT  rc = MouOpen(DriverName, DeviceHandle);
USHORT  rc = MouOpen(DriverName, DeviceHandle);


PSZ             DriverName;    /* Pointer draw driver name */
PSZ     DriverName;    /* Pointer draw driver name */
PHMOU           DeviceHandle;  /* Mouse device handle */
PHMOU   DeviceHandle;  /* Mouse device handle */


USHORT           rc;            /* return code */
USHORT rc;            /* return code */
</PRE>
</PRE>


===MASM Binding===
===MASM===
<PRE>
<PRE>
EXTRN MouOpen:FAR
EXTRN     MouOpen:FAR
INCL_MOU           EQU 1
INCL_MOU EQU 1


PUSH@  ASCIIZ  DriverName    ;Pointer draw driver name
PUSH@  ASCIIZ  DriverName    ;Pointer draw driver name

Latest revision as of 17:25, 14 September 2019

This call opens the mouse device for the current session.

Syntax

MouOpen (DriverName, DeviceHandle)

Parameters

DriverName (PSZ) - input
DriverName is a far pointer to an ASCIIZ string in application storage containing the name of the pointer draw device driver to be used as the pointer-image drawing routine for this session.
The name of the device driver must be included in the CONFIG.SYS file at system start-up time. Applications that use the default pointer draw device driver supplied by the system must push a double-word of 0s in place of an address.
DriverName has a different definition when the caller is the Base Video Subsystem (BVS). In this case the selector portion of the far address is zero. The offset portion is non-zero and contains a display configuration number (sequentially numbered where 1 is the first display configuration). The MouOpen call issued by BVS is executed on the VioSetMode path. Using the display configuration number passed on the MouOpen call, the Base Mouse Subsystem can detect a change in display configurations. This form of the MouOpen call is not recommended for applications. Applications should either push the far address of an ASCIIZ pointer draw device driver name or push two words of zeros.
DeviceHandle (PHMOU) - output
Address of a 1-word value that represents the mouse handle returned to the application.

Return Code

rc (USHORT) - return
Return code descriptions are:
  • 0 NO_ERROR
  • 385 ERROR_MOUSE_NO_DEVICE
  • 390 ERROR_MOUSE_INV_MODULE_PT
  • 466 ERROR_MOU_DETACHED
  • 501 ERROR_MOUSE_NO_CONSOLE
  • 505 ERROR_MOU_EXTENDED_SG

Remarks

MouOpen initializes the Mouse functions to a known state. The application may have to issue additional mouse functions to establish the environment it desires. For example, after the MouOpen, the collision area is defined to be the size of the entire display. Therefore, to get the pointer to be displayed, the application must issue a MouDrawPtr to remove the collision area.

The state of the mouse after the first MouOpen is:

Bindings

C

#define INCL_MOU

USHORT  rc = MouOpen(DriverName, DeviceHandle);

PSZ     DriverName;    /* Pointer draw driver name */
PHMOU   DeviceHandle;  /* Mouse device handle */

USHORT  rc;            /* return code */

MASM

EXTRN     MouOpen:FAR
INCL_MOU  EQU 1

PUSH@  ASCIIZ  DriverName    ;Pointer draw driver name
PUSH@  WORD    DeviceHandle  ;Mouse device handle
CALL   MouOpen

Returns WORD

Related Functions