cannot run on windows95??
-
I have a program which read the serial port. I have it running okay on Windows 2000, but when I tried on Windows95, this is the error message I got: "Linked to missing export KERNEL32.DLL:Cancello" "A device attached to the program is not functioning" What can be wrong? TIA!
-
I have a program which read the serial port. I have it running okay on Windows 2000, but when I tried on Windows95, this is the error message I got: "Linked to missing export KERNEL32.DLL:Cancello" "A device attached to the program is not functioning" What can be wrong? TIA!
the program uses a function that is not available in the Win95 kernel. -c
Image tools: ThumbNailer, Bobber, TIFFAssembler
-
the program uses a function that is not available in the Win95 kernel. -c
Image tools: ThumbNailer, Bobber, TIFFAssembler
-
If you want, you can try to use Rational Purify Plus in order to check which functions are used by your application that are usupported for Win95, you can download the demo version and check it. Else you can check it by yourself by checking all the functions used in MSDN in order to know the OS required for that function... There are a lot of ways to know which OS you are using (where your app has been installed) and you could write an application that work in different ways depending on the OS. Hope this helps.