PRB: DLLEntry in SNMP testdll Sample Does Not Get Called

ID: Q160621

The information in this article applies to:

SYMPTOMS

DLLEntry, 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.

CAUSE

The problem arises because DLLEntry is not specified in the makefile as the DLL entry point.

RESOLUTION

The 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.

STATUS

This behavior is by design.

REFERENCES

For 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

Additional query words:
Keywords          : kbnetwork kbAPI kbNTOS351 kbNTOS400 kbSDKPlatform kbSNMP kbWinOS95 kbGrpNet 
Issue type        : kbprb

Last Reviewed: July 31, 1998