News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Release Candidate for version 13.00 is now available

Started by TimoVJL, April 02, 2025, 11:41:10 PM

Previous topic - Next topic

jj2007

Works like a charm. However, you won't see any symbols in Olly if you use this version of polink.exe in your assembly programs. Keep the old polink version. You have been warned :cool:

Vortex

Release Candidate #2 is available :

http://www.smorgasbordet.com/pellesc/download.htm

shantanu

I wonder why Pelle doesn't name the setup file as per the version number.
It helps to download and store the installers together.

Something like:
pellesc_setup_1200.exe
pellesc_setup_1300rc1.exe

I assume Windows treating files named "setup.exe" special is still a thing!

Quin

I've wondered that too, I am not a fan of the setup.exe installer name for Pelles C, I've come across it months later and had utterly no idea what it was  :skrewy:

Vortex

Hi shantanu,

If you are on Windows 10\11, you can try the command-line tool curl to download and rename the installer.

TimoVJL

#6
Thanks for a tip  :thumbsup:
wget -O setup_v13.exe http://www.smorgasbordet.com/pellesc/1300/setup.exe
This works too:
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <commdlg.h>
#include <urlmon.h>

#pragma comment(lib, "urlmon.lib")

void __cdecl mainCRTStartup(void)
{
    HRESULT hRC = URLDownloadToFile(NULL, "http://www.smorgasbordet.com/pellesc/1300/setup.exe", "pocinst13.exe", BINDF_GETNEWESTVERSION, NULL);
    ExitProcess(0);
}

May the source be with you

zedd

Quote from: shantanu on May 02, 2025, 02:20:44 AMI assume Windows treating files named "setup.exe" special is still a thing!
As well as files with "installer" in their name.
:sad:

Vortex

Hi Timo,

Here is where to get wget for Windows :

https://eternallybored.org/misc/wget/