News:

Download Pelles C here: http://www.pellesc.se

Main Menu

Recent posts

#31
Bug reports / Some fonts are missing from th...
Last post by ander_cc - April 14, 2026, 08:58:13 AM
Like "Cascadia Mono", I can't see it in font name list. But can set in theme file.
Btw: When I was translating rc file, I noticed line 3409 had still read "version 13.00".
See attach files.
Pelles C v14, Windows 11 pro Chinese (Samplify) 25H2
#32
General discussions / Re: Chinese(simplify) translat...
Last post by ander_cc - April 14, 2026, 08:39:37 AM
Quote from: John Z on April 11, 2026, 11:10:43 AMHi ander_cc,

For the string tables you might consider using AI.  Here is an example input and output from Gemini

You will need to be the judge of the accuracy and perhaps fix a few things here and there but this technique should be able to get you to the finish line.

John Z
Thank you! I already translated it. https://forum.pellesc.de/index.php?topic=11778.0
#33
General discussions / Chinese Simplify translation w...
Last post by ander_cc - April 14, 2026, 08:36:16 AM
Just need someone to help with testing.
Dialogs, menus and string tables have been translated. See attach zip file.
#34
General discussion / Pelles C and Windows Defender ...
Last post by italofutura - April 14, 2026, 08:22:10 AM
Hi,

I tried to install Pelles C on my employer provided Windows 11 laptop. I do not have admin rights on this laptop.

when I try to install Pelles C a smart screen  appears, but due to lack of administrator privileges, I cannot proceed.

Other software works. Is it because Pelles C binaries are not signed? If yes, why?
#36
General discussion / Re: about complex.h
Last post by crun - April 12, 2026, 06:50:29 AM
> As the complex.h was removed,

I am trying to compile an old project from 2016-2018, which used complex.h, and the project file tags as C99

Can anyone suggest what version I should start with appropriate to those years, and before complex.h was removed?

Alternatively, perhaps it was never in the PellesC installer, and the OG programmer got if from somewhere else?
#37
Assembly discussions / Re: Trackbar control
Last post by Vortex - April 11, 2026, 10:28:28 PM
Modified 64-bit version to reflect the X64 RIP-relative addressing, expr WRT rip
#38
Expert questions / Re: Link error with minhook
Last post by Pelle - April 11, 2026, 03:39:53 PM
Quote from: Vortex on April 10, 2026, 09:52:04 AMSorry but is it allowed to discuss about API hooking in this forum?
Like many other things, this can be used for both good and bad.
It depends on the context. So far I see nothing out of line here...
#39
Expert questions / Re: Link error with minhook
Last post by Pelle - April 11, 2026, 03:36:43 PM
Quote from: unwake on April 10, 2026, 04:09:53 AMhttps://github.com/TsudaKageyu/minhook/releases/tag/v1.3.4
Minhook has dynamic and static lib, link with dynamic lib is ok, but link with static lib "libMinHook.x64.lib", say error:
POLINK: fatal error: Unsupported anonymous format in object 'x64\Release\libMinHook\hook.obj'.
can you fix it ?
I can't find any documentation about this format (I'm guessing this is a some semi-new Microsoft crap, and with their documentation department being years behind everyone else, maybe not surprising). I will keep looking, but with no proper documentation I'm not sure what I can do...

EDIT: after some testing, this looks like MSVC link-time code generation. This library can only work with Microsoft tools ...

#40
Beginner questions / Re: How to determine compiler ...
Last post by John Z - April 11, 2026, 01:26:19 PM
Might want to update and add:


        case 202311:
            printf ("diff.c: Compiler standard is C23 (%lu).\n", C_version);
            break;

to be complete -

John Z