BSESUB.INC Contains Incorrect DeclarationsLast reviewed: January 23, 1995Article ID: Q32810 |
The information in this article applies to:
SUMMARYIn the file BSESUB.INC that comes with Microsoft Macro Assembler version 5.1 and 5.1a, the KBDINFO structure fields should all be declared with the DW directive; however, the fields are declared by the DB directive instead.
MORE INFORMATIONThe following is the KBDINFO structure as declared in the BSESUB.INC that comes with MASM 5.1 and 5.1a
KBDINFO struc kbxl_cb db ? kbxl_fsMask db ? kbxl_chTurnAround db ? kbxl_fsInterim db ? kbxl_fsState dw ? KBDINFO endsThe following is the KBDINFO structure as declared in the BSESUB.INC that comes with MASM 6.0
KBDINFO STRUCT 2 ; kbst cb_ WORD 0 fsMask_ WORD 0 chTurnAround_ WORD 0 fsInterim_ WORD 0 fsState_ WORD 0 KBDINFO ENDS |
Additional reference words: kbinf 5.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |