Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
3/26/2014
The _DllEntryCRTStartup function has been removed from Windows Embedded Compact 2013, which may result in a failure to call DllEntry during DLL loading. If you use the DllEntry function as your DLL entry point, make the following changes to avoid any problems with DLL loading:
- Change the name of your DLL entry point to DllMain.
- If the line
DLLENTRY=_DllEntryCRTStartupexists in your Sources file, delete the line or replace it withDLLENTRY=_DllMainCRTStartup. - If you export DllEntry, update your .def file to export DllMain instead.