PRB: DLLEntry in SNMP testdll Sample Does Not Get CalledLast reviewed: December 9, 1996Article ID: Q160621 |
The information in this article applies to:
SYMPTOMSDLLEntry, the entry point in the Win32 SDK SNMP extension agent sample, testdll, does not get called. As a result, if you model your own SNMP extension agent on the testdll sample, any code you run during DLL initialization and/or cleanup will not get called. This is not a problem for this sample, however, because it does not run any code during DLL initialization/cleanup and thus does not impact its proper running.
CAUSEThe problem arises because DLLEntry is not specified in the makefile as the DLL entry point.
RESOLUTIONThe workaround is to change the DLL entry point to DllMain or to specify DLLEntry as the entry point in the link line of the makefile. It can be easier and safer to change the DLL entry point name to DllMain than to modify the link line in the makefile to use DLLEntry as the entry point. This is because the C Run Time is automatically initialized if the DLL entry point is named DllMain without any additional changes to the code required.
STATUSThis behavior is by design.
REFERENCESFor more information about DLL entry points, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q94248 TITLE : Using the C Run Time |
KBCategory: kbnetwork kbprb
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |