FIX: Functions Exported Incorrectly in MASM 6.1 WINDLL Sample

Last reviewed: September 16, 1997
Article ID: Q104041
6.10 6.10a MS-DOS kbtool kbfixlist kbbuglist

The information in this article applies to:

  • Microsoft Macro Assembler for MS-DOS, versions 6.1 and 6.1a

SYMPTOMS

The SYSDATA.EXE sample program supplied with the Microsoft Macro Assembler (MASM) versions 6.1 and 6.1a displays incorrect data when run. (This assumes you have already successfully built SYSINFO.DLL using the provided makefile, SYSINFO.MAK.)

CAUSE

SYSDATA.EXE was built with a different import library than the one created from the SYSINFO files shipped with MASM. Therefore, SYSDATA.EXE does not correctly call the functions within SYSINFO.DLL, which causes the program to display incorrect data.

RESOLUTION

There are two solutions (described below) to the problem. If you have the Microsoft Windows Software Development Kit (SDK), you can choose either solution. The SDK is relevant because RC.EXE is required to build SYSDATA.EXE. RC.EXE is shipped with the SDK and is not included with MASM.

  • If you have the SDK, you can rebuild SYSDATA.EXE using SYSDATA.MAK. This uses the import library produced from building SYSINFO.DLL--SYSINFO.LIB. When you run the rebuilt SYSDATA.EXE, the correct data is displayed.
  • If you do not have the SDK, you need to first modify SYSINFO.DEF so that it resembles the following:

          EXPORTS
    
                  GetSysTime   @1
                  GetSysDate   @2
                  GetSysInfo   @3
                  WEP          @4   RESIDENTNAME
    
       After making the changes, rebuild SYSINFO.DLL using SYSINFO.MAK.
       When you then run SYSDATA.EXE, it will correctly reference the
       functions within the rebuilt SYSINFO.DLL and display the correct
       data.
    
    

STATUS

Microsoft has confirmed this to be a problem in MASM version 6.1, and 6.1a. This problem was corrected in MASM version 6.11.


Additional reference words: 6.10 6.10a
KBCategory: kbtool kbfixlist kbbuglist
KBSubcategory: CodeSam
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 16, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.