News:

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

Main Menu

Recent posts

#21
Expert questions / Re: V13 final release
Last post by John Z - May 22, 2025, 10:46:36 PM
OK - looks like my system was having a problem and I jumped the gun seeing the same error code as before with WIN11 24H2 after V13 final version was installed.

I wiped out everything again and reinstalled from scratch again - this time, like everyone else,  I get no error.

My apologies to all, especially Pelle,  I made a stupid dumb move posting so soon without doing further checking. :-[

Please forgive my error.

John Z

I won't remove the topic to hide my error but leave it to remind me to be better....
#22
Expert questions / Re: Error code: -1073741819
Last post by alderman2 - May 22, 2025, 10:06:03 PM
Okay!
Thanks!
#23
Announcements / Re: Version 13.00 is now relea...
Last post by alderman2 - May 22, 2025, 10:04:33 PM
Quote from: Pelle on May 22, 2025, 08:37:09 AMTo Quin, Vortex, TimoVJL, John Z, Akko, AlexN, nub...
Thank you very much!

To alderman2:
First I've heard of such a tab problem. Which Windows version are you using? Any other information you can think of that may help understand it...?

I am running Windows 11 24H2.
It's not a big mistake. I'll survive it.
#24
Expert questions / Re: Error code: -1073741819
Last post by TimoVJL - May 22, 2025, 10:02:49 PM
Quote from: alderman2 on May 22, 2025, 09:50:20 PMI don't really understand. Is there something wrong with that line?
Just an example for x64 version.

#25
Announcements / Re: Version 13.00 is now relea...
Last post by alderman2 - May 22, 2025, 10:02:42 PM
Quote from: Quin on May 22, 2025, 02:32:38 AM
Quote from: alderman2 on May 21, 2025, 10:57:35 PM
Quote from: TimoVJL on May 21, 2025, 08:50:29 PM
Quote from: alderman2 on May 21, 2025, 08:36:59 PMA minor bug, however, is that the tabs at the bottom (Project, Search in files, Results, etc.) are not visible. If you drag the cursor over the field, the tabs expand. Had the same problem in v11 but not in previous versions.
And you just waited for release version  ???
Don't really understand.
I downloaded v11 when I was programming a couple of years ago. Then I stopped programming until recently. Now that I saw that there is a v13 I downloaded it. Don't know if it is final or an ongoing improvement version.
He's saying that you shouldn't have waited until the final release version to report it, but from the sounds of it you're a casual user and I don't think we should expect all casual users to report everything.
Sure, in a perfect world it would've been nice to have it fixed in one of the RCs, but such is life. No software is perfect.
Okay!
I installed v13 yesterday so I haven't had time to report the error until now.
#26
Expert questions / Re: V13 final release
Last post by alderman2 - May 22, 2025, 09:58:23 PM
I have Pelles C v13.00.6 #3 and Windows 11 24H2. It works without an error code.
I guess you should rename the folder to the previous version of Pelles before installing the latest one. That's what I did and it works without an error message.
#27
Expert questions / Re: Error code: -1073741819
Last post by alderman2 - May 22, 2025, 09:50:20 PM
I don't really understand. Is there something wrong with that line?
#28
Expert questions / Re: V13 final release
Last post by Vortex - May 22, 2025, 09:47:00 PM
#29
Expert questions / Re: V13 final release
Last post by Robert - May 22, 2025, 09:43:07 PM
Quote from: John Z on May 22, 2025, 07:50:59 PM
Quote from: Robert on May 22, 2025, 07:27:56 PMHi John:

I'm compiling from command-line and from Pelles 13.00.7 IDE on Windows 24H2 OS Build 26100.4061. No problems.
Do you get Error code: -1073741819 when compiling the Hello example in the IDE ? What and how are you compiling to throw that error ?


John Z

Check this link for details.
https://forum.pellesc.de/index.php?PHPSESSID=v5g18cvn3a2h9saqduujeabqfr&topic=11433.0

Hi John:

I compiled both 32 and 64 bit Timo's revision of alderman2's program using the .ppj files from the archive at

https://forum.pellesc.de/index.php?topic=11433.msg41328#msg41328

and did not get Error code: -1073741819.

Again, I ask, what and how are you compiling to throw that error ? You say "ran fine". What "ran fine"?
#30
Assembly discussions / Re: Some Stats
Last post by Vortex - May 22, 2025, 08:59:04 PM
Reading Pelle's manual :

QuoteThe COMM directive declares name as a communal symbol with the size of either a type or a constant expression. An optional naming convention may be specified for the name.

Communal symbols will be assigned storage space at link time, unless it has been explicitly defined in a module. The memory space may not be assigned until load time, so using communal symbols may reduce the size of the executable.

Examples:
COMM BuffSize:256
COMM MaxInt:DWORD
COMM Var1:DWORD, Var2:MYSTRUCT