My app. under Win98? Problem with DLL's
-
Hi, I have programmed a MFC application under Win XP, and now i try to run my app on Win98. I have copied the following files to the win98 system dir: MFC42.dll, msvcp60.dll, msvcrt.dll I get the following error: The MSVCRT.DLL file is linked to missing export NTDLL.DLL RtlGetNtVersionNumbers With Dependency Walker i see that the version of ntdll.dll not correct is for my app. When i copy a newer version of ntdll.dll to the system dir, windows doesnt start correctly. Have i copied the wrong MSVCRT.DLL? Which DLL's do you normally use? Thanks for helping me! Willem
-
Hi, I have programmed a MFC application under Win XP, and now i try to run my app on Win98. I have copied the following files to the win98 system dir: MFC42.dll, msvcp60.dll, msvcrt.dll I get the following error: The MSVCRT.DLL file is linked to missing export NTDLL.DLL RtlGetNtVersionNumbers With Dependency Walker i see that the version of ntdll.dll not correct is for my app. When i copy a newer version of ntdll.dll to the system dir, windows doesnt start correctly. Have i copied the wrong MSVCRT.DLL? Which DLL's do you normally use? Thanks for helping me! Willem
you can link your program statically with MFC
-
you can link your program statically with MFC
giant_hao wrote: you can link your program statically with MFC I have tried it, but then i get the error "Failed to create empty document", I get this error on the XP machine where i compiled the application. If i link the app normally, then the app runs fine!(under XP)