News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

Windows XP apps

Started by WiiLF23, August 20, 2024, 01:03:05 AM

Previous topic - Next topic

WiiLF23

Hey guys,

When I create a new 32bit dialog project and immediately compile the application (zero changes to project settings or code), the app runs fine on Windows Vista+, but when I attempt to run on Windows XP Pro I get "... is not a valid win32 application".

Is there a compiler flag that passes support for this? Is there something else I need to do?

Thank you,
cheers

John Z

Hi WiilF23,

I don't think there is anything 'special' as long as the project has been set to 32 bit in the Source files window.  Any DLL's in use ? if so are they 32 bit as well?

Attached is a small single exe 32 bit program for testing - see if it runs on the XP Pro.

John Z

TimoVJL

try polink options/SUBSYSTEM:CONSOLE,5.01 /OSVERSION:5.1
May the source be with you

Vortex

Timo's suggestion should do the job. Specifiying the pragma expression in the code :

pragma comment(linker,"/subsystem:console,5.1")
Code it... That's all...

WiiLF23

#4
Thanks guys, I appreciate the input a lot.

@John Z, what is interesting is that exe wont run on Windows 10 unless I turn compatibility mode on for "Windows XP SP3", then it launches fine. I will fire up VirtualBox and try along with the linker flags.

Will report back!

EDIT: not working in native XP mode


frankie

Quote from: WiiLF23 on August 20, 2024, 08:44:30 PM
what is interesting is that exe wont run on Windows 10 unless I turn compatibility mode on for "Windows XP SP3", then it launches fine.
Which service pack is installed on your XP-pro system?
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide

WiiLF23

#6
Quote from: frankie on August 20, 2024, 08:53:21 PM
Quote from: WiiLF23 on August 20, 2024, 08:44:30 PM
what is interesting is that exe wont run on Windows 10 unless I turn compatibility mode on for "Windows XP SP3", then it launches fine.
Which service pack is installed on your XP-pro system?

Service Pack 3, Professional 32bit build 2600

Current link flags (Windows 10, Pelles C):


-machine:x86 -subsystem:windows /MANIFEST:EMBED kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib delayimp.lib wininet.lib shell32.lib shlwapi.lib ole32.lib ws2_32.lib crypt32.lib libcurl.lib curl_dll.lib version.lib msimg32.lib


Passing /OSVERSION:5.1 doesnt have any effect. Same error message.

WiiLF23

#7
I got it. Compiling a new project, and adding:

-machine:x86 -subsystem:windows,5.1 -safeseh kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib delayimp.lib /OSVERSION:5.1

This successfully launched a basic dialog app in Windows XP Pro SP3.


WiiLF23

#8
The first problem is OpenSSL (notably, libcrypto-3.dll) calls for "api-ms-win-crt-stdio-l1-1-0.dll", which is a problem. This is provided by the VC 2017 runtime installer, which did not fix it. The APIs are not present to locate the entry point in this runtime file provided by Microsoft on Windows XP.

Reviewing my libraries authors webpage under "Compatibility and Support Matrix" I see XP is red (Incompatible / Unsupported).

So we can shoot that out of the park.

I am still testing libcurl, and so far it I am having no luck.

It would be nice to support XP+ as my GUI and API calls are all purposely compatible by best efforts from Windows 2000 and onward. Very strange.

Would someone recommend a old version of OpenSSL lib? This sounds like a terrible idea, but for the sake of legacy support on this platform.

EDIT: Solved.

https://msfn.org/board/topic/176299-latest-version-of-software-running-on-xp/page/36/
https://slproweb.com/products/Win32OpenSSL.html (Install 32bit, extract libcrypt-3.dll)

Required on a fresh XP install:

- VC_redist.x86.exe (14.28.29213.0)
- Win32OpenSSL-3_3_1.exe -> libcrypto-3.dll (Program Files\OpenSSL-Win32\libcrypto-3.dll)

---

Full blown app is running on Windows XP! Winsock, OpenSSL, cURL, everything. Very nice. Also the exact same copy from XP is running in Windows 10 just fine. So, this will be my 32bit project settings going forward and will make no assumption it is XP, but all 32bit versions of Windows. The compatibility I was looking for.

The DLLs will do the talking, I can test anything on VirtualBox.

Winsock Compatibility

For Winsock on XP for compatibility you must consider too

Windows Vista+

inet_ntop(AF_INET, &(clientAddr.sin_addr), ip, INET_ADDRSTRLEN);
port = ntohs(clientAddr.sin_port);


Windows XP+

char *ip = inet_ntoa(clientAddr.sin_addr);
port = ntohs(clientAddr.sin_port);
if (ip != NULL) {
    // use ip, port
}


https://learn.microsoft.com/en-us/windows/win32/api/ws2tcpip/nf-ws2tcpip-inet_ntop
https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-inet_ntoa

Otherwise this will break the compatibility and throw a Winsock API error dialog.