Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:getnumqueel [2016/02/04 05:04] – created valerius | en:ibm:prcp:mou:getnumqueel [2016/09/15 03:56] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouGetNumQueEl ==== | ==== MouGetNumQueEl ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call returns the current status for the mouse device driver event queue. | This call returns the current status for the mouse device driver event queue. | ||
Line 30: | Line 30: | ||
**Remarks** | **Remarks** | ||
- | The maxnumqelements returned by this function is established during mouse device driver configuration. See the mouse DEVICE=MOUSExxx.SYS statement in the IBM Operating System/2 Version 1.2 Command Reference for further details. | + | The //maxnumqelements// returned by this function is established during mouse device driver configuration. See the mouse DEVICE=MOUSExxx.SYS statement in the IBM Operating System/2 Version 1.2 Command Reference for further details. |
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | typedef struct _MOUQUEINFO { /* mouqi */ | ||
+ | USHORT cEvents; | ||
+ | USHORT cmaxEvents; | ||
+ | } MOUQUEINFO; | ||
+ | |||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PMOUQUEINFO | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | MOUQUEINFO struc | ||
+ | mouqi_cEvents | ||
+ | mouqi_cmaxEvents dw ? ; | ||
+ | MOUQUEINFO ends | ||
+ | |||
+ | EXTRN MouGetNumQueEl: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ OTHER | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||